RecommendedAsConfigurableAttribute.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 / RecommendedAsConfigurableAttribute.cs / 1305376 / RecommendedAsConfigurableAttribute.cs

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

/* 
 */ 
namespace System.ComponentModel {
 
    using System;
    using System.Diagnostics;
    using System.Security.Permissions;
 
    /// 
    ///    Specifies that the property can be 
    ///       used as an application setting. 
    /// 
    [AttributeUsage(AttributeTargets.Property)] 
    [Obsolete("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
    public class RecommendedAsConfigurableAttribute : Attribute {
        private bool recommendedAsConfigurable = false;
 
        /// 
        ///     
        ///       Initializes a new instance of 
        ///       the  class.
        ///     
        /// 
        public RecommendedAsConfigurableAttribute(bool recommendedAsConfigurable) {
            this.recommendedAsConfigurable = recommendedAsConfigurable;
        } 

        ///  
        ///    Gets a value indicating whether the property this 
        ///       attribute is bound to can be used as an application setting.
        ///  
        public bool RecommendedAsConfigurable {
            get {
                return recommendedAsConfigurable;
            } 
        }
 
        ///  
        ///    
        ///       Specifies that a property cannot be used as an application setting. This 
        ///    field is read-only.
        ///    
        /// 
        public static readonly RecommendedAsConfigurableAttribute No = new RecommendedAsConfigurableAttribute(false); 

        ///  
        ///     
        ///       Specifies
        ///       that a property can be used as an application setting. This field is read-only. 
        ///    
        /// 
        public static readonly RecommendedAsConfigurableAttribute Yes = new RecommendedAsConfigurableAttribute(true);
 
        /// 
        ///     
        ///       Specifies the default value for the , which is . This field is 
        ///       read-only.
        ///     
        /// 
        public static readonly RecommendedAsConfigurableAttribute Default = No;

        ///  
        /// 
        ///  
        public override bool Equals(object obj) { 
            if (obj == this) {
                return true; 
            }

            RecommendedAsConfigurableAttribute other = obj as RecommendedAsConfigurableAttribute;
 
            return other != null && other.RecommendedAsConfigurable == recommendedAsConfigurable;
 
 
        }
 
        /// 
        ///    
        ///       Returns the hashcode for this object.
        ///     
        /// 
        public override int GetHashCode() { 
            return base.GetHashCode(); 
        }
 
        /// 
        /// 
        /// 
        public override bool IsDefaultAttribute() { 
            return !recommendedAsConfigurable;
        } 
    } 
}

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