HtmlControlPersistable.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / HtmlControlPersistable.cs / 1 / HtmlControlPersistable.cs

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

namespace System.Web.UI { 
    using System.ComponentModel; 
    using System;
 
    [AttributeUsage(AttributeTargets.Property)]
    internal sealed class HtmlControlPersistableAttribute : Attribute {

        internal static readonly HtmlControlPersistableAttribute Yes = new HtmlControlPersistableAttribute(true); 
        internal static readonly HtmlControlPersistableAttribute No =  new HtmlControlPersistableAttribute(false);
        internal static readonly HtmlControlPersistableAttribute Default = Yes; 
        private bool persistable = true; 

        internal HtmlControlPersistableAttribute(bool persistable) { 
            this.persistable = persistable;
        }

        internal bool HtmlControlPersistable { 
            get {
                return persistable; 
            } 
        }
 
        public override bool Equals(object obj) {
            if (obj == this) {
                return true;
            } 

            HtmlControlPersistableAttribute other = obj as HtmlControlPersistableAttribute; 
            return (other != null) && other.HtmlControlPersistable == persistable; 
        }
 
        public override int GetHashCode() {
            return persistable.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 { 
    using System.ComponentModel; 
    using System;
 
    [AttributeUsage(AttributeTargets.Property)]
    internal sealed class HtmlControlPersistableAttribute : Attribute {

        internal static readonly HtmlControlPersistableAttribute Yes = new HtmlControlPersistableAttribute(true); 
        internal static readonly HtmlControlPersistableAttribute No =  new HtmlControlPersistableAttribute(false);
        internal static readonly HtmlControlPersistableAttribute Default = Yes; 
        private bool persistable = true; 

        internal HtmlControlPersistableAttribute(bool persistable) { 
            this.persistable = persistable;
        }

        internal bool HtmlControlPersistable { 
            get {
                return persistable; 
            } 
        }
 
        public override bool Equals(object obj) {
            if (obj == this) {
                return true;
            } 

            HtmlControlPersistableAttribute other = obj as HtmlControlPersistableAttribute; 
            return (other != null) && other.HtmlControlPersistable == persistable; 
        }
 
        public override int GetHashCode() {
            return persistable.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