Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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)); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RSAPKCS1SignatureDeformatter.cs
- XmlValueConverter.cs
- FrameworkTemplate.cs
- FileIOPermission.cs
- Enum.cs
- CultureInfoConverter.cs
- GZipStream.cs
- CodeBinaryOperatorExpression.cs
- XamlPathDataSerializer.cs
- FileStream.cs
- CodePageEncoding.cs
- NameValueConfigurationCollection.cs
- TTSEngineTypes.cs
- XmlBaseReader.cs
- TabItemWrapperAutomationPeer.cs
- SecurityRuntime.cs
- MultipartContentParser.cs
- SoapTypeAttribute.cs
- SourceFilter.cs
- NodeInfo.cs
- DataGridViewRowStateChangedEventArgs.cs
- DataDocumentXPathNavigator.cs
- BaseCollection.cs
- Util.cs
- Composition.cs
- StaticResourceExtension.cs
- HighlightVisual.cs
- SevenBitStream.cs
- LineVisual.cs
- SecurityResources.cs
- TransformerTypeCollection.cs
- DataGridViewRowEventArgs.cs
- GenerateHelper.cs
- FrameworkObject.cs
- PageContent.cs
- ITextView.cs
- Style.cs
- FlowPosition.cs
- WebResponse.cs
- ListViewCommandEventArgs.cs
- ScrollBar.cs
- GifBitmapEncoder.cs
- BitmapImage.cs
- DirectoryNotFoundException.cs
- DispatcherExceptionFilterEventArgs.cs
- PropVariant.cs
- XmlSecureResolver.cs
- HierarchicalDataBoundControlAdapter.cs
- TrustLevel.cs
- GeneralTransform3DTo2D.cs
- RuleSettingsCollection.cs
- Polyline.cs
- EndpointAddressAugust2004.cs
- ColumnCollection.cs
- GPStream.cs
- XmlIlTypeHelper.cs
- DynamicActionMessageFilter.cs
- DataMisalignedException.cs
- AnchoredBlock.cs
- DeferredReference.cs
- XmlNodeReader.cs
- FileLogRecord.cs
- CodeTypeMember.cs
- Application.cs
- ManagementOperationWatcher.cs
- SoapConverter.cs
- SHA512.cs
- ImageClickEventArgs.cs
- DiagnosticTrace.cs
- MenuEventArgs.cs
- HttpRawResponse.cs
- XmlSchemaComplexType.cs
- ImageSource.cs
- FlowDocumentPaginator.cs
- SmtpLoginAuthenticationModule.cs
- RijndaelManaged.cs
- URLBuilder.cs
- ConnectionStringsExpressionBuilder.cs
- TextDpi.cs
- AuthenticationSection.cs
- CodeTypeReferenceExpression.cs
- Panel.cs
- WebUtil.cs
- DocumentXPathNavigator.cs
- ListItem.cs
- ValueType.cs
- FilterQueryOptionExpression.cs
- HtmlContainerControl.cs
- GlyphCollection.cs
- ItemCollection.cs
- SpStreamWrapper.cs
- LineServices.cs
- SpeakProgressEventArgs.cs
- ItemChangedEventArgs.cs
- ColumnResult.cs
- QuaternionRotation3D.cs
- ObjectComplexPropertyMapping.cs
- DecoderFallbackWithFailureFlag.cs
- ApplicationManager.cs
- DebugViewWriter.cs