ControlBuilderAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ControlBuilderAttribute.cs / 1 / ControlBuilderAttribute.cs

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

/* 
 */ 
namespace System.Web.UI {
 
    using System;
    using System.ComponentModel;
    using System.Security.Permissions;
 

    ///  
    /// Allows a control to specify a custom  object 
    ///    for building that control within the ASP.NET parser.
    ///  
    [AttributeUsage(AttributeTargets.Class)]
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class ControlBuilderAttribute : Attribute {
 

        ///  
        ///  
        /// The default  object is a
        ///  builder. This field is read-only. 
        /// 
        public static readonly ControlBuilderAttribute Default = new ControlBuilderAttribute(null);

        private Type builderType = null; 

 
 
        /// 
        ///  
        public ControlBuilderAttribute(Type builderType) {
            this.builderType = builderType;
        }
 

        ///  
        ///     Indicates XXX. This property is read-only. 
        /// 
        public Type BuilderType { 
            get {
                return builderType;
            }
        } 

 
 
        /// 
        ///  
        ///    [To be supplied.]
        /// 
        public override int GetHashCode() {
            return ((BuilderType != null) ? BuilderType.GetHashCode() : 0); 
        }
 
 
        /// 
        ///  
        /// 
        public override bool Equals(object obj) {
            if (obj == this) {
                return true; 
            }
            if ((obj != null) && (obj is ControlBuilderAttribute)) { 
                return((ControlBuilderAttribute)obj).BuilderType == builderType; 
            }
 
            return false;
        }

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


                        

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