Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / ReadOnlyAttribute.cs / 1 / ReadOnlyAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class ReadOnlyAttribute : Attribute { private bool isReadOnly = false; ///Specifies whether the property this attribute is bound to /// is read-only or read/write. ////// public static readonly ReadOnlyAttribute Yes = new ReadOnlyAttribute(true); ////// Specifies that the property this attribute is bound to is read-only and /// cannot be modified in the server explorer. This ///field is /// read-only. /// /// public static readonly ReadOnlyAttribute No = new ReadOnlyAttribute(false); ////// Specifies that the property this attribute is bound to is read/write and can /// be modified at design time. This ///field is read-only. /// /// public static readonly ReadOnlyAttribute Default = No; ////// Specifies the default value for the ///, which is , that is, /// the property this attribute is bound to is read/write. This field is read-only. /// /// public ReadOnlyAttribute(bool isReadOnly) { this.isReadOnly = isReadOnly; } ////// Initializes a new instance of the ///class. /// /// public bool IsReadOnly { get { return isReadOnly; } } ////// Gets a value indicating whether the property this attribute is bound to is /// read-only. /// ////// /// public override bool Equals(object value) { if (this == value) { return true; } ReadOnlyAttribute other = value as ReadOnlyAttribute; return other != null && other.IsReadOnly == IsReadOnly; } ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// /// public override bool IsDefaultAttribute() { return (this.IsReadOnly == Default.IsReadOnly); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Determines if this attribute is the default. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class ReadOnlyAttribute : Attribute { private bool isReadOnly = false; ///Specifies whether the property this attribute is bound to /// is read-only or read/write. ////// public static readonly ReadOnlyAttribute Yes = new ReadOnlyAttribute(true); ////// Specifies that the property this attribute is bound to is read-only and /// cannot be modified in the server explorer. This ///field is /// read-only. /// /// public static readonly ReadOnlyAttribute No = new ReadOnlyAttribute(false); ////// Specifies that the property this attribute is bound to is read/write and can /// be modified at design time. This ///field is read-only. /// /// public static readonly ReadOnlyAttribute Default = No; ////// Specifies the default value for the ///, which is , that is, /// the property this attribute is bound to is read/write. This field is read-only. /// /// public ReadOnlyAttribute(bool isReadOnly) { this.isReadOnly = isReadOnly; } ////// Initializes a new instance of the ///class. /// /// public bool IsReadOnly { get { return isReadOnly; } } ////// Gets a value indicating whether the property this attribute is bound to is /// read-only. /// ////// /// public override bool Equals(object value) { if (this == value) { return true; } ReadOnlyAttribute other = value as ReadOnlyAttribute; return other != null && other.IsReadOnly == IsReadOnly; } ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// /// public override bool IsDefaultAttribute() { return (this.IsReadOnly == Default.IsReadOnly); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Determines if this attribute is the default. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ByteAnimationBase.cs
- DescendantQuery.cs
- HtmlObjectListAdapter.cs
- TreeViewItem.cs
- PermissionSetTriple.cs
- InlineObject.cs
- SafeEventLogWriteHandle.cs
- TraceSection.cs
- DbException.cs
- EnvelopedSignatureTransform.cs
- ConnectionStringsExpressionBuilder.cs
- xdrvalidator.cs
- Config.cs
- MessagePropertyDescription.cs
- DataListItemCollection.cs
- EnumConverter.cs
- DBBindings.cs
- AxHost.cs
- DataFieldCollectionEditor.cs
- SelectionProviderWrapper.cs
- xmlsaver.cs
- MetaModel.cs
- SizeValueSerializer.cs
- DesigntimeLicenseContext.cs
- XmlIterators.cs
- TypeHelpers.cs
- TemplateControl.cs
- XsltArgumentList.cs
- FreezableCollection.cs
- _IPv6Address.cs
- SecurityException.cs
- AnimationLayer.cs
- PropertyNames.cs
- UIPermission.cs
- EditorReuseAttribute.cs
- TokenBasedSet.cs
- SerializationSectionGroup.cs
- EmbeddedMailObject.cs
- XPathBinder.cs
- TreeView.cs
- PageCodeDomTreeGenerator.cs
- CustomAttribute.cs
- ProfessionalColors.cs
- SqlTypesSchemaImporter.cs
- InvokeBase.cs
- PeerTransportElement.cs
- ChtmlTextWriter.cs
- ConvertEvent.cs
- PagedDataSource.cs
- ParameterCollection.cs
- BooleanSwitch.cs
- GenericFlowSwitchHelper.cs
- SymbolType.cs
- HasCopySemanticsAttribute.cs
- LinearKeyFrames.cs
- StreamSecurityUpgradeInitiatorBase.cs
- ComboBoxItem.cs
- MessageRpc.cs
- System.Data_BID.cs
- SingleTagSectionHandler.cs
- StringTraceRecord.cs
- ChangePasswordDesigner.cs
- GatewayIPAddressInformationCollection.cs
- DataGridViewCellCollection.cs
- ObjectViewListener.cs
- DetailsViewUpdateEventArgs.cs
- XmlEntityReference.cs
- EnvelopedPkcs7.cs
- HttpHandlerAction.cs
- BreakRecordTable.cs
- HTTPNotFoundHandler.cs
- QilLiteral.cs
- ViewValidator.cs
- BaseDataList.cs
- BigInt.cs
- TogglePattern.cs
- RequestDescription.cs
- XPathChildIterator.cs
- PeerTransportSecuritySettings.cs
- MailWriter.cs
- SortDescription.cs
- ValidationEventArgs.cs
- GACIdentityPermission.cs
- IndependentAnimationStorage.cs
- DependencyPropertyKey.cs
- ToolStrip.cs
- DesignerEventService.cs
- RulePatternOps.cs
- ReliableSessionBindingElementImporter.cs
- ReliableMessagingVersionConverter.cs
- ApplicationId.cs
- ArrayHelper.cs
- Nullable.cs
- ProviderUtil.cs
- SqlCacheDependencySection.cs
- BamlTreeMap.cs
- SharedUtils.cs
- WizardSideBarListControlItem.cs
- PictureBox.cs
- AttachInfo.cs