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
- ObjectHandle.cs
- ValueSerializer.cs
- SessionPageStateSection.cs
- ColumnTypeConverter.cs
- versioninfo.cs
- QueryableDataSourceHelper.cs
- CircleHotSpot.cs
- ScaleTransform.cs
- SelectionEditingBehavior.cs
- ColorTranslator.cs
- ViewGenResults.cs
- DecimalAnimationUsingKeyFrames.cs
- DBSqlParser.cs
- Model3D.cs
- LayoutEngine.cs
- ExceptionValidationRule.cs
- DbSourceParameterCollection.cs
- ExpressionCopier.cs
- TimerEventSubscription.cs
- LinkedResource.cs
- DesignerCapabilities.cs
- Validator.cs
- HttpHandlerActionCollection.cs
- WindowsGrip.cs
- ListControl.cs
- ClipboardProcessor.cs
- GeneralTransform3DTo2DTo3D.cs
- PropertySourceInfo.cs
- DesignerCategoryAttribute.cs
- ConfigXmlComment.cs
- MailMessage.cs
- DataRowCollection.cs
- FocusWithinProperty.cs
- DataTableReader.cs
- PanelDesigner.cs
- _ConnectStream.cs
- BitStack.cs
- DemultiplexingClientMessageFormatter.cs
- LOSFormatter.cs
- ArglessEventHandlerProxy.cs
- SqlDataSourceCommandEventArgs.cs
- BitSet.cs
- MLangCodePageEncoding.cs
- CodeNamespaceImportCollection.cs
- ResourceReferenceExpressionConverter.cs
- EasingKeyFrames.cs
- GroupBox.cs
- ObjectListShowCommandsEventArgs.cs
- QilList.cs
- ExecutorLocksHeldException.cs
- BezierSegment.cs
- StateDesignerConnector.cs
- ExceptionUtility.cs
- PolyLineSegmentFigureLogic.cs
- HandlerBase.cs
- InheritedPropertyChangedEventArgs.cs
- QilReference.cs
- DbProviderManifest.cs
- ClientSession.cs
- XmlUtf8RawTextWriter.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- Nodes.cs
- PreloadedPackages.cs
- ConnectivityStatus.cs
- OdbcFactory.cs
- PostBackTrigger.cs
- COM2ExtendedTypeConverter.cs
- SymmetricKey.cs
- ToolStripContainer.cs
- TransformGroup.cs
- DataControlCommands.cs
- ImageEditor.cs
- MetabaseSettings.cs
- OleDbRowUpdatingEvent.cs
- DiagnosticsConfigurationHandler.cs
- PageBreakRecord.cs
- CodeTypeMember.cs
- ConfigurationElementCollection.cs
- LeafCellTreeNode.cs
- DllNotFoundException.cs
- AssemblyAttributesGoHere.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ObjectStateManagerMetadata.cs
- Renderer.cs
- RichTextBox.cs
- ManualResetEventSlim.cs
- OrthographicCamera.cs
- Color.cs
- OleDbMetaDataFactory.cs
- SoapSchemaImporter.cs
- TableSectionStyle.cs
- DataSet.cs
- Vector3DConverter.cs
- SqlCrossApplyToCrossJoin.cs
- DrawingContext.cs
- URIFormatException.cs
- StylusOverProperty.cs
- AxisAngleRotation3D.cs
- UriScheme.cs
- _ListenerRequestStream.cs