Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FileSystemEventArgs.cs
- TextTrailingWordEllipsis.cs
- Annotation.cs
- DragDeltaEventArgs.cs
- SetterTriggerConditionValueConverter.cs
- TextFormatterContext.cs
- OracleParameterCollection.cs
- OdbcConnectionHandle.cs
- DbCommandDefinition.cs
- SafeNativeMethods.cs
- InvokePatternIdentifiers.cs
- WorkflowHostingEndpoint.cs
- CodeGroup.cs
- TreeNodeCollection.cs
- AnimationStorage.cs
- CompareValidator.cs
- Conditional.cs
- GridView.cs
- ColumnResizeUndoUnit.cs
- OleDbParameter.cs
- ScriptReferenceEventArgs.cs
- Interlocked.cs
- ProvideValueServiceProvider.cs
- UiaCoreTypesApi.cs
- ToolStripItemClickedEventArgs.cs
- XmlSchemaObjectCollection.cs
- EntityKeyElement.cs
- FileDetails.cs
- CipherData.cs
- QuaternionAnimation.cs
- columnmapkeybuilder.cs
- UnhandledExceptionEventArgs.cs
- SequenceQuery.cs
- PerfCounters.cs
- AnnotationMap.cs
- XhtmlBasicImageAdapter.cs
- WorkflowRuntimeService.cs
- DateTimeUtil.cs
- XsltSettings.cs
- ByteStream.cs
- HtmlMeta.cs
- HtmlInputControl.cs
- NamespaceTable.cs
- DbDataReader.cs
- HttpDictionary.cs
- MessageSecurityOverTcp.cs
- UnsafeNativeMethods.cs
- DBCSCodePageEncoding.cs
- FilterableData.cs
- DoubleLink.cs
- HashCodeCombiner.cs
- PerformanceCountersElement.cs
- XmlSignificantWhitespace.cs
- StrongNameIdentityPermission.cs
- ActiveXHelper.cs
- VerificationException.cs
- VirtualPath.cs
- TogglePattern.cs
- ProxySimple.cs
- Trace.cs
- TreeViewImageKeyConverter.cs
- ToolStripDropDownButton.cs
- ScriptControlManager.cs
- StorageComplexTypeMapping.cs
- DataGridViewRowHeaderCell.cs
- WebBrowserDocumentCompletedEventHandler.cs
- AsyncOperation.cs
- IsolatedStorageFile.cs
- TableLayoutCellPaintEventArgs.cs
- ListBoxItemWrapperAutomationPeer.cs
- XMLDiffLoader.cs
- ComplexBindingPropertiesAttribute.cs
- ReliableSessionElement.cs
- LedgerEntry.cs
- UIElementIsland.cs
- RelatedImageListAttribute.cs
- HttpException.cs
- SystemIcmpV6Statistics.cs
- DetailsViewCommandEventArgs.cs
- XMLDiffLoader.cs
- EditableLabelControl.cs
- DivideByZeroException.cs
- streamingZipPartStream.cs
- ButtonColumn.cs
- TranslateTransform3D.cs
- ResourceAttributes.cs
- ClientUrlResolverWrapper.cs
- SapiRecoContext.cs
- DbgUtil.cs
- GridItemCollection.cs
- SpecialFolderEnumConverter.cs
- InlineUIContainer.cs
- TextWriterTraceListener.cs
- TextProperties.cs
- PermissionSetEnumerator.cs
- LinqDataSourceInsertEventArgs.cs
- SQLMembershipProvider.cs
- CryptoStream.cs
- OrthographicCamera.cs
- EntitySqlQueryCacheKey.cs