DescriptionAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / DescriptionAttribute.cs / 1 / DescriptionAttribute.cs

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

/* 
 */ 
namespace System.ComponentModel {
    using System; 
    using System.Diagnostics;
    using System.Security.Permissions;

    ///  
    ///    Specifies a description for a property
    ///       or event. 
    ///  
    [AttributeUsage(AttributeTargets.All)]
    public class DescriptionAttribute : Attribute { 
        /// 
        /// Specifies the default value for the  , which is an
        ///    empty string (""). This  field is read-only.
        ///  
        public static readonly DescriptionAttribute Default = new DescriptionAttribute();
        private string description; 
 
        /// 
        ///    [To be supplied.] 
        /// 
        public DescriptionAttribute() : this (string.Empty) {
        }
 
        /// 
        ///    Initializes a new instance of the  class. 
        ///  
        public DescriptionAttribute(string description) {
            this.description = description; 
        }

        /// 
        ///    Gets the description stored in this attribute. 
        /// 
        public virtual string Description { 
            get { 
                return DescriptionValue;
            } 
        }

        /// 
        ///     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 DescriptionValue {
            get { 
                return description;
            }
            set {
                description = value; 
            }
        } 
 
        public override bool Equals(object obj) {
            if (obj == this) { 
                return true;
            }

            DescriptionAttribute other = obj as DescriptionAttribute; 

            return (other != null) && other.Description == Description; 
        } 

        public override int GetHashCode() { 
            return Description.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;

    ///  
    ///    Specifies a description for a property
    ///       or event. 
    ///  
    [AttributeUsage(AttributeTargets.All)]
    public class DescriptionAttribute : Attribute { 
        /// 
        /// Specifies the default value for the  , which is an
        ///    empty string (""). This  field is read-only.
        ///  
        public static readonly DescriptionAttribute Default = new DescriptionAttribute();
        private string description; 
 
        /// 
        ///    [To be supplied.] 
        /// 
        public DescriptionAttribute() : this (string.Empty) {
        }
 
        /// 
        ///    Initializes a new instance of the  class. 
        ///  
        public DescriptionAttribute(string description) {
            this.description = description; 
        }

        /// 
        ///    Gets the description stored in this attribute. 
        /// 
        public virtual string Description { 
            get { 
                return DescriptionValue;
            } 
        }

        /// 
        ///     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 DescriptionValue {
            get { 
                return description;
            }
            set {
                description = value; 
            }
        } 
 
        public override bool Equals(object obj) {
            if (obj == this) { 
                return true;
            }

            DescriptionAttribute other = obj as DescriptionAttribute; 

            return (other != null) && other.Description == Description; 
        } 

        public override int GetHashCode() { 
            return Description.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