Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- DbMetaDataCollectionNames.cs
- HeaderPanel.cs
- Closure.cs
- MetadataCacheItem.cs
- ReadOnlyObservableCollection.cs
- DbDataSourceEnumerator.cs
- NonSerializedAttribute.cs
- CodeSnippetTypeMember.cs
- SortedDictionary.cs
- CodeMemberEvent.cs
- TextTreeTextElementNode.cs
- WaitHandle.cs
- ExtenderControl.cs
- BaseParagraph.cs
- SimpleLine.cs
- WebPartEditVerb.cs
- LineGeometry.cs
- ClientRuntimeConfig.cs
- RSAOAEPKeyExchangeFormatter.cs
- ClockController.cs
- Win32KeyboardDevice.cs
- SchemaImporter.cs
- EntityContainerAssociationSet.cs
- ManipulationInertiaStartingEventArgs.cs
- RtfToXamlReader.cs
- ConfigXmlReader.cs
- OdbcError.cs
- DbProviderSpecificTypePropertyAttribute.cs
- PageAsyncTaskManager.cs
- RangeBaseAutomationPeer.cs
- BuildDependencySet.cs
- WebConfigurationFileMap.cs
- LazyTextWriterCreator.cs
- BoolExpressionVisitors.cs
- FormsAuthenticationCredentials.cs
- XmlSerializerVersionAttribute.cs
- LoginName.cs
- TextRangeEdit.cs
- GAC.cs
- BackEase.cs
- SourceElementsCollection.cs
- DiagnosticsConfiguration.cs
- ComponentDispatcher.cs
- ReadOnlyTernaryTree.cs
- Int64KeyFrameCollection.cs
- _ListenerRequestStream.cs
- ThreadPool.cs
- ProfilePropertySettingsCollection.cs
- DataGridViewSortCompareEventArgs.cs
- TextEditorMouse.cs
- VectorValueSerializer.cs
- MatchingStyle.cs
- HtmlControl.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- DispatchChannelSink.cs
- SchemaImporter.cs
- DataListItemCollection.cs
- TreeViewImageIndexConverter.cs
- TextBreakpoint.cs
- Mappings.cs
- WebPartDescription.cs
- GridSplitterAutomationPeer.cs
- ImageInfo.cs
- PlainXmlSerializer.cs
- BrowserCapabilitiesCodeGenerator.cs
- RepeaterItemCollection.cs
- StoreAnnotationsMap.cs
- TraceHelpers.cs
- Misc.cs
- DecoderExceptionFallback.cs
- CqlQuery.cs
- ExceptionHandlerDesigner.cs
- streamingZipPartStream.cs
- BaseCodePageEncoding.cs
- LocalizableResourceBuilder.cs
- SystemIcons.cs
- MimeMapping.cs
- X509Extension.cs
- PerfCounters.cs
- DescendantBaseQuery.cs
- IconHelper.cs
- DataGridViewCellMouseEventArgs.cs
- ScriptModule.cs
- SqlClientWrapperSmiStream.cs
- QueryPrefixOp.cs
- BlockUIContainer.cs
- ConnectionPoolManager.cs
- DataGridViewCellEventArgs.cs
- SoapTransportImporter.cs
- ExtendedPropertyDescriptor.cs
- ThrowHelper.cs
- ApplyTemplatesAction.cs
- QilExpression.cs
- InlinedAggregationOperator.cs
- MaskedTextBoxDesignerActionList.cs
- SqlDataAdapter.cs
- GetBrowserTokenRequest.cs
- XmlSerializer.cs
- BitmapEffectDrawingContent.cs
- HtmlImage.cs