WebDisplayNameAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebDisplayNameAttribute.cs / 1305376 / WebDisplayNameAttribute.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls.WebParts { 
    using System; 

    [AttributeUsage(AttributeTargets.Property)] 
    public class WebDisplayNameAttribute : Attribute {
        public static readonly WebDisplayNameAttribute Default = new WebDisplayNameAttribute();

        private string _displayName; 

        public WebDisplayNameAttribute() : this(String.Empty) { 
        } 

        public WebDisplayNameAttribute(string displayName) { 
            _displayName = displayName;
        }

        public virtual string DisplayName { 
            get {
                return DisplayNameValue; 
            } 
        }
 
        protected string DisplayNameValue {
            get {
                return _displayName;
            } 
            set {
                _displayName = value; 
            } 
        }
 
        public override bool Equals(object obj) {
            if (obj == this) {
                return true;
            } 

            WebDisplayNameAttribute other = obj as WebDisplayNameAttribute; 
            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.Web.UI.WebControls.WebParts { 
    using System; 

    [AttributeUsage(AttributeTargets.Property)] 
    public class WebDisplayNameAttribute : Attribute {
        public static readonly WebDisplayNameAttribute Default = new WebDisplayNameAttribute();

        private string _displayName; 

        public WebDisplayNameAttribute() : this(String.Empty) { 
        } 

        public WebDisplayNameAttribute(string displayName) { 
            _displayName = displayName;
        }

        public virtual string DisplayName { 
            get {
                return DisplayNameValue; 
            } 
        }
 
        protected string DisplayNameValue {
            get {
                return _displayName;
            } 
            set {
                _displayName = value; 
            } 
        }
 
        public override bool Equals(object obj) {
            if (obj == this) {
                return true;
            } 

            WebDisplayNameAttribute other = obj as WebDisplayNameAttribute; 
            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

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK