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
- AxHost.cs
- DataGridBeginningEditEventArgs.cs
- ConfigurationStrings.cs
- EncoderNLS.cs
- WebCategoryAttribute.cs
- OutputCacheProfile.cs
- PropertyPushdownHelper.cs
- AnimationClockResource.cs
- XmlConvert.cs
- DbParameterHelper.cs
- HeaderedItemsControl.cs
- _AcceptOverlappedAsyncResult.cs
- TransformDescriptor.cs
- PageTheme.cs
- SmtpReplyReaderFactory.cs
- WebHttpElement.cs
- MsmqElementBase.cs
- FloaterBaseParaClient.cs
- HttpCookieCollection.cs
- PrivilegedConfigurationManager.cs
- PolyLineSegmentFigureLogic.cs
- WebPartDescription.cs
- BitmapEffectRenderDataResource.cs
- XmlSchemas.cs
- Rule.cs
- ButtonBaseAutomationPeer.cs
- LogicalTreeHelper.cs
- GeneralTransform3DGroup.cs
- SessionStateItemCollection.cs
- ObjectNavigationPropertyMapping.cs
- QilBinary.cs
- MexBindingBindingCollectionElement.cs
- UpdateTracker.cs
- SkinBuilder.cs
- CopyAttributesAction.cs
- streamingZipPartStream.cs
- BoundField.cs
- ControlFilterExpression.cs
- TextHidden.cs
- CalendarTable.cs
- IISUnsafeMethods.cs
- AssertSection.cs
- SpecialFolderEnumConverter.cs
- SqlDelegatedTransaction.cs
- ParallelTimeline.cs
- Atom10FormatterFactory.cs
- HitTestDrawingContextWalker.cs
- DataSourceProvider.cs
- XamlParser.cs
- SiblingIterators.cs
- XamlStackWriter.cs
- ForwardPositionQuery.cs
- HandlerBase.cs
- FileAccessException.cs
- COM2ICategorizePropertiesHandler.cs
- GregorianCalendar.cs
- PenThreadWorker.cs
- PrimitiveType.cs
- DataGridColumnHeader.cs
- _TransmitFileOverlappedAsyncResult.cs
- HatchBrush.cs
- EntityTypeBase.cs
- DynamicValidator.cs
- EngineSiteSapi.cs
- Model3DCollection.cs
- MouseBinding.cs
- TraceSwitch.cs
- StandardOleMarshalObject.cs
- PnrpPeerResolverBindingElement.cs
- recordstatefactory.cs
- ListSortDescription.cs
- GraphicsContext.cs
- WinInet.cs
- ParameterReplacerVisitor.cs
- CommentEmitter.cs
- EditorAttribute.cs
- RSACryptoServiceProvider.cs
- SystemWebSectionGroup.cs
- OutputCache.cs
- FocusManager.cs
- DynamicQueryableWrapper.cs
- SiteIdentityPermission.cs
- StretchValidation.cs
- NamedPipeChannelFactory.cs
- ControlPager.cs
- UriTemplateClientFormatter.cs
- DateTimeFormatInfoScanner.cs
- StoreItemCollection.Loader.cs
- InkCanvasSelectionAdorner.cs
- FileSystemInfo.cs
- FileLevelControlBuilderAttribute.cs
- InputDevice.cs
- XPathNodeHelper.cs
- ACE.cs
- WindowsProgressbar.cs
- RoutedPropertyChangedEventArgs.cs
- FieldNameLookup.cs
- XmlHelper.cs
- XmlExtensionFunction.cs
- ExtentCqlBlock.cs