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
- DesignerAdRotatorAdapter.cs
- SchemaImporter.cs
- SpeechUI.cs
- MethodCallConverter.cs
- TargetControlTypeCache.cs
- TemplateBuilder.cs
- RandomNumberGenerator.cs
- MulticastNotSupportedException.cs
- MsmqIntegrationBinding.cs
- KeyTimeConverter.cs
- Annotation.cs
- RegistryConfigurationProvider.cs
- EventData.cs
- CssClassPropertyAttribute.cs
- LockCookie.cs
- BasicExpandProvider.cs
- EventLogInternal.cs
- XmlILIndex.cs
- InstancePersistenceContext.cs
- TdsParserStateObject.cs
- HtmlTernaryTree.cs
- KeyboardNavigation.cs
- ViewLoader.cs
- UpdateTracker.cs
- BlockingCollection.cs
- InputGestureCollection.cs
- ObjectTag.cs
- StylusShape.cs
- PerspectiveCamera.cs
- FunctionNode.cs
- ProtectedProviderSettings.cs
- FixedTextView.cs
- TemplateEditingService.cs
- WebPartConnectionsConnectVerb.cs
- CommandTreeTypeHelper.cs
- XmlQueryTypeFactory.cs
- MDIClient.cs
- Evaluator.cs
- ValidationSummary.cs
- HttpResponseInternalWrapper.cs
- TextBoxAutoCompleteSourceConverter.cs
- XsltCompileContext.cs
- WorkflowInstanceExtensionManager.cs
- DataGridViewElement.cs
- RelationalExpressions.cs
- MeasureItemEvent.cs
- ObfuscationAttribute.cs
- Matrix3DValueSerializer.cs
- ResizeGrip.cs
- XmlDomTextWriter.cs
- BinaryConverter.cs
- oledbconnectionstring.cs
- WebPartDescription.cs
- TopClause.cs
- OrderedParallelQuery.cs
- Viewport3DVisual.cs
- Win32Exception.cs
- CallbackHandler.cs
- CryptoProvider.cs
- ClientScriptManager.cs
- CompModSwitches.cs
- WindowsUpDown.cs
- WindowsPrincipal.cs
- GPRECTF.cs
- Transactions.cs
- QEncodedStream.cs
- CustomWebEventKey.cs
- COM2AboutBoxPropertyDescriptor.cs
- PersistenceProviderFactory.cs
- List.cs
- StateChangeEvent.cs
- ActivityMarkupSerializer.cs
- SecurityManager.cs
- HttpBufferlessInputStream.cs
- InputBindingCollection.cs
- Util.cs
- InertiaRotationBehavior.cs
- ChangesetResponse.cs
- MsmqOutputMessage.cs
- VersionedStream.cs
- CodeNamespace.cs
- HelpPage.cs
- ExceptionValidationRule.cs
- XmlConvert.cs
- FontUnit.cs
- validationstate.cs
- Imaging.cs
- HandlerWithFactory.cs
- InlineObject.cs
- NegotiateStream.cs
- ReflectionUtil.cs
- Schema.cs
- Vector3D.cs
- UshortList2.cs
- basevalidator.cs
- xamlnodes.cs
- DrawingAttributes.cs
- DbConnectionPoolIdentity.cs
- ComplexBindingPropertiesAttribute.cs
- SchemaDeclBase.cs