Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / DisplayNameAttribute.cs / 1305376 / 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
- ToolStripDropDownMenu.cs
- IIS7UserPrincipal.cs
- DataGridBoolColumn.cs
- FactoryGenerator.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- AdPostCacheSubstitution.cs
- HtmlInputRadioButton.cs
- GcSettings.cs
- StylusPointPropertyId.cs
- filewebrequest.cs
- MD5CryptoServiceProvider.cs
- XPathNavigatorReader.cs
- SponsorHelper.cs
- ListControlConvertEventArgs.cs
- UInt16Storage.cs
- DLinqAssociationProvider.cs
- XmlSchemaAny.cs
- SrgsElementFactory.cs
- PackWebRequestFactory.cs
- SR.cs
- Avt.cs
- MetadataPropertyCollection.cs
- path.cs
- UxThemeWrapper.cs
- WinFormsSecurity.cs
- StructuralType.cs
- _CookieModule.cs
- SBCSCodePageEncoding.cs
- GlyphRunDrawing.cs
- RegexTree.cs
- CacheRequest.cs
- MemberAccessException.cs
- Renderer.cs
- RMPublishingDialog.cs
- VerticalAlignConverter.cs
- DetailsViewUpdatedEventArgs.cs
- CheckBoxList.cs
- ContentValidator.cs
- XomlCompilerResults.cs
- XPathBuilder.cs
- TextEffect.cs
- InputMethod.cs
- TCEAdapterGenerator.cs
- TiffBitmapDecoder.cs
- HighlightVisual.cs
- NativeMethods.cs
- ImpersonateTokenRef.cs
- UserControlAutomationPeer.cs
- ConfigXmlSignificantWhitespace.cs
- XPathParser.cs
- CaseInsensitiveHashCodeProvider.cs
- DataControlFieldCollection.cs
- SecurityChannelFactory.cs
- TextTreeDeleteContentUndoUnit.cs
- ServiceReference.cs
- StreamResourceInfo.cs
- ListViewSortEventArgs.cs
- XPathDocumentBuilder.cs
- RangeValuePatternIdentifiers.cs
- ExpressionCopier.cs
- BasicExpandProvider.cs
- SafeNativeMethods.cs
- TaskFactory.cs
- InlineUIContainer.cs
- Token.cs
- Vars.cs
- WebBrowserNavigatingEventHandler.cs
- MailFileEditor.cs
- Package.cs
- coordinatorscratchpad.cs
- GridViewDeleteEventArgs.cs
- ActivityCodeGenerator.cs
- DataGrid.cs
- SevenBitStream.cs
- CurrentTimeZone.cs
- XmlAttributeAttribute.cs
- ExecutionContext.cs
- StyleXamlParser.cs
- HandlerFactoryWrapper.cs
- RowSpanVector.cs
- ContractComponent.cs
- ActivityValidator.cs
- SqlCharStream.cs
- AudienceUriMode.cs
- ProcessHostServerConfig.cs
- ItemList.cs
- LogLogRecordEnumerator.cs
- DataServiceStreamProviderWrapper.cs
- MimeXmlImporter.cs
- PrimitiveCodeDomSerializer.cs
- RequestDescription.cs
- UnsafeNativeMethods.cs
- AddInStore.cs
- OracleException.cs
- ObjectMemberMapping.cs
- DataGridViewElement.cs
- DataBindingList.cs
- NullableLongMinMaxAggregationOperator.cs
- StyleCollectionEditor.cs
- DesignerSerializationManager.cs