Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / DisplayNameAttribute.cs / 1 / DisplayNameAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes")] [AttributeUsage(AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Class | AttributeTargets.Method)] public class DisplayNameAttribute : Attribute { ///Specifies the display name for a property or event. The default is the name of the property or event. ////// public static readonly DisplayNameAttribute Default = new DisplayNameAttribute(); private string _displayName; ///Specifies the default value for the ///, which is an /// empty string (""). This field is read-only. /// public DisplayNameAttribute() : this (string.Empty) { } ///[To be supplied.] ////// public DisplayNameAttribute(string displayName) { this._displayName = displayName; } ///Initializes a new instance of the ///class. /// public virtual string DisplayName { get { return DisplayNameValue; } } ///Gets the description stored in this attribute. ////// Read/Write property that directly modifies the string stored /// in the description attribute. The default implementation /// of the Description property simply returns this value. /// protected string DisplayNameValue { get { return _displayName; } set { _displayName = value; } } public override bool Equals(object obj) { if (obj == this) { return true; } DisplayNameAttribute other = obj as DisplayNameAttribute; return (other != null) && other.DisplayName == DisplayName; } public override int GetHashCode() { return DisplayName.GetHashCode(); } ////// /// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.Diagnostics; using System.Security.Permissions; ////// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes")] [AttributeUsage(AttributeTargets.Property | AttributeTargets.Event | AttributeTargets.Class | AttributeTargets.Method)] public class DisplayNameAttribute : Attribute { ///Specifies the display name for a property or event. The default is the name of the property or event. ////// public static readonly DisplayNameAttribute Default = new DisplayNameAttribute(); private string _displayName; ///Specifies the default value for the ///, which is an /// empty string (""). This field is read-only. /// public DisplayNameAttribute() : this (string.Empty) { } ///[To be supplied.] ////// public DisplayNameAttribute(string displayName) { this._displayName = displayName; } ///Initializes a new instance of the ///class. /// public virtual string DisplayName { get { return DisplayNameValue; } } ///Gets the description stored in this attribute. ////// Read/Write property that directly modifies the string stored /// in the description attribute. The default implementation /// of the Description property simply returns this value. /// protected string DisplayNameValue { get { return _displayName; } set { _displayName = value; } } public override bool Equals(object obj) { if (obj == this) { return true; } DisplayNameAttribute other = obj as DisplayNameAttribute; return (other != null) && other.DisplayName == DisplayName; } public override int GetHashCode() { return DisplayName.GetHashCode(); } ////// /// public override bool IsDefaultAttribute() { return (this.Equals(Default)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Viewport3DVisual.cs
- XmlUtf8RawTextWriter.cs
- ConfigXmlElement.cs
- Point3D.cs
- DataGridViewDataConnection.cs
- CharEnumerator.cs
- SafeEventLogWriteHandle.cs
- ColorConvertedBitmap.cs
- GiveFeedbackEvent.cs
- ZipIOLocalFileBlock.cs
- SessionIDManager.cs
- RenderContext.cs
- ComNativeDescriptor.cs
- DigitalSignatureProvider.cs
- HTTP_SERVICE_CONFIG_URLACL_PARAM.cs
- TriggerBase.cs
- XslAst.cs
- RSAPKCS1SignatureFormatter.cs
- PropertySourceInfo.cs
- CombinedGeometry.cs
- MatchAllMessageFilter.cs
- InvokeBinder.cs
- ResXFileRef.cs
- ArraySubsetEnumerator.cs
- DataErrorValidationRule.cs
- MessageLogger.cs
- StreamGeometry.cs
- ThreadExceptionEvent.cs
- IndexOutOfRangeException.cs
- XmlSchemaAppInfo.cs
- Automation.cs
- ResXResourceSet.cs
- VectorCollectionValueSerializer.cs
- CustomGrammar.cs
- ListChangedEventArgs.cs
- ColumnMap.cs
- BStrWrapper.cs
- WebPartCloseVerb.cs
- ListView.cs
- AppDomainProtocolHandler.cs
- ModelVisual3D.cs
- EntitySqlException.cs
- FillBehavior.cs
- SelectionProviderWrapper.cs
- StateManagedCollection.cs
- InputProcessorProfiles.cs
- BoundPropertyEntry.cs
- ServiceNameElement.cs
- TextEffect.cs
- GroupQuery.cs
- WindowsTab.cs
- MouseEventArgs.cs
- PrimitiveCodeDomSerializer.cs
- ImageCodecInfoPrivate.cs
- ParallelTimeline.cs
- ToolboxDataAttribute.cs
- BinaryUtilClasses.cs
- BitmapEffectCollection.cs
- RelationshipType.cs
- EpmContentDeSerializerBase.cs
- AppDomainAttributes.cs
- DataBindingValueUIHandler.cs
- HandlerBase.cs
- ExpandedProjectionNode.cs
- Rect3DValueSerializer.cs
- unsafenativemethodstextservices.cs
- SystemIcons.cs
- ElasticEase.cs
- ChunkedMemoryStream.cs
- Roles.cs
- BeginEvent.cs
- SequentialOutput.cs
- LineMetrics.cs
- _RequestCacheProtocol.cs
- FontUnit.cs
- SafeArrayTypeMismatchException.cs
- CombinedGeometry.cs
- Label.cs
- SplitContainer.cs
- CallbackTimeoutsElement.cs
- IItemContainerGenerator.cs
- WindowsIPAddress.cs
- CanonicalFontFamilyReference.cs
- EncoderReplacementFallback.cs
- SmtpFailedRecipientException.cs
- DerivedKeySecurityToken.cs
- RotateTransform3D.cs
- PhysicalAddress.cs
- AssemblyCache.cs
- SelectionUIHandler.cs
- ConfigurationStrings.cs
- TdsParserSessionPool.cs
- AmbiguousMatchException.cs
- XPathAncestorIterator.cs
- BinaryConverter.cs
- WebBrowserUriTypeConverter.cs
- AutoGeneratedFieldProperties.cs
- Button.cs
- BaseDataBoundControl.cs
- NullableFloatMinMaxAggregationOperator.cs