Code:
/ FX-1434 / FX-1434 / 1.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
- PageAction.cs
- ModelUIElement3D.cs
- HyperLink.cs
- BitmapDownload.cs
- SqlSelectStatement.cs
- ListBindingConverter.cs
- SHA512.cs
- XmlSchemaSimpleTypeUnion.cs
- InlineCollection.cs
- BooleanFacetDescriptionElement.cs
- DateTimeConstantAttribute.cs
- HttpCachePolicyBase.cs
- XmlWellformedWriter.cs
- ConstantSlot.cs
- DataDocumentXPathNavigator.cs
- XmlTextEncoder.cs
- AffineTransform3D.cs
- WorkflowValidationFailedException.cs
- XmlSchemaAttributeGroupRef.cs
- IPGlobalProperties.cs
- SqlBulkCopyColumnMapping.cs
- TargetParameterCountException.cs
- XmlNamespaceMapping.cs
- Accessible.cs
- Label.cs
- DbParameterCollectionHelper.cs
- NaturalLanguageHyphenator.cs
- BoundColumn.cs
- PauseStoryboard.cs
- Win32Native.cs
- HttpsChannelFactory.cs
- ISAPIWorkerRequest.cs
- DataGridViewMethods.cs
- TemplateColumn.cs
- HMACSHA512.cs
- DispatchChannelSink.cs
- EntityDataSourceColumn.cs
- TreeNodeCollection.cs
- WindowsSysHeader.cs
- ExpressionVisitor.cs
- ByteConverter.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- IPAddress.cs
- ISAPIWorkerRequest.cs
- Filter.cs
- TextRangeEdit.cs
- SafeNativeMethodsMilCoreApi.cs
- WebServiceReceiveDesigner.cs
- BackgroundFormatInfo.cs
- HealthMonitoringSectionHelper.cs
- SHA256.cs
- CodeTypeReferenceCollection.cs
- SubpageParagraph.cs
- RandomNumberGenerator.cs
- CultureInfo.cs
- FontStretches.cs
- PropagatorResult.cs
- TextEndOfLine.cs
- ComboBoxItem.cs
- Viewport3DAutomationPeer.cs
- StructuralObject.cs
- CodeRemoveEventStatement.cs
- DynamicPhysicalDiscoSearcher.cs
- FocusWithinProperty.cs
- HTMLTagNameToTypeMapper.cs
- InputLanguageEventArgs.cs
- XmlBinaryReader.cs
- StreamSecurityUpgradeAcceptorBase.cs
- SemaphoreFullException.cs
- TextHintingModeValidation.cs
- ResXResourceReader.cs
- MdiWindowListItemConverter.cs
- CompModSwitches.cs
- IgnoreFileBuildProvider.cs
- IQueryable.cs
- SynchronizingStream.cs
- EntityObject.cs
- Int32Rect.cs
- TabControl.cs
- SystemResources.cs
- NavigationFailedEventArgs.cs
- OrderPreservingPipeliningSpoolingTask.cs
- ListViewTableCell.cs
- PixelShader.cs
- EntityDesignerUtils.cs
- RijndaelManagedTransform.cs
- XpsDigitalSignature.cs
- UserNamePasswordServiceCredential.cs
- DataSourceControl.cs
- IndexedEnumerable.cs
- LicenseManager.cs
- FontStretch.cs
- ScriptingWebServicesSectionGroup.cs
- ColumnResult.cs
- ButtonField.cs
- WebFaultClientMessageInspector.cs
- Parser.cs
- RegexBoyerMoore.cs
- TdsRecordBufferSetter.cs
- WebPartsSection.cs