DefaultBindingPropertyAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / DefaultBindingPropertyAttribute.cs / 1305376 / DefaultBindingPropertyAttribute.cs

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

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

    ///  
    ///    Specifies the default binding property for a component.
    ///  
    [AttributeUsage(AttributeTargets.Class)] 
    public sealed class DefaultBindingPropertyAttribute : Attribute {
 
        private readonly string name;

        /// 
        ///     
        ///       Initializes a new instance of
        ///       the  class. 
        ///     
        /// 
        public DefaultBindingPropertyAttribute() { 
            this.name = null;
        }

        ///  
        ///    
        ///       Initializes a new instance of 
        ///       the  class. 
        ///    
        ///  
        public DefaultBindingPropertyAttribute(string name) {
            this.name = name;
        }
 
        /// 
        ///     
        ///       Gets the name of the default binding property for the component this attribute is 
        ///       bound to.
        ///     
        /// 
        public string Name {
            get {
                return name; 
            }
        } 
 
        /// 
        ///     
        ///       Specifies the default value for the , which is . This
        ///    field is read-only.
        ///    
        ///  
        public static readonly DefaultBindingPropertyAttribute Default = new DefaultBindingPropertyAttribute();
 
        public override bool Equals(object obj) { 
            DefaultBindingPropertyAttribute other = obj as DefaultBindingPropertyAttribute;
            return other != null && other.Name == name; 
        }

        public override int GetHashCode() {
            return base.GetHashCode(); 
        }
    } 
} 

// 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