AutoGeneratedFieldProperties.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 / xsp / System / Web / UI / WebControls / AutoGeneratedFieldProperties.cs / 5 / AutoGeneratedFieldProperties.cs

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

namespace System.Web.UI.WebControls { 
 
    using System;
    using System.ComponentModel; 
    using System.Reflection;
    using System.Security.Permissions;
    using System.Web.Util;
 

    ///  
    ///     
    ///       Stores the properties for an AutoGeneratedField.
    ///     
    /// 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class AutoGeneratedFieldProperties : IStateManager {
        private bool _isTracking; 
        private StateBag _statebag;
 
 
        public AutoGeneratedFieldProperties() {
            _statebag = new StateBag(); 
        }


        public string DataField { 
            get {
                object o = ViewState["DataField"]; 
                if (o != null) { 
                    return (string)o;
                } 
                return String.Empty;
            }
            set {
                ViewState["DataField"] = value; 
            }
        } 
 

        public bool IsReadOnly { 
            get {
                object o = ViewState["IsReadOnly"];
                if (o != null) {
                    return (bool)o; 
                }
                return false; 
            } 
            set {
                ViewState["IsReadOnly"] = value; 
            }
        }

 
        public string Name {
            get { 
                object o = ViewState["Name"]; 
                if (o != null) {
                    return (string)o; 
                }
                return String.Empty;
            }
            set { 
                ViewState["Name"] = value;
            } 
        } 

 
        public Type Type {
            get {
                object o = ViewState["Type"];
                if (o != null) { 
                    return (Type)o;
                } 
                return null; 
            }
            set { 
                ViewState["Type"] = value;
            }
        }
 
        /// 
        /// Gets the statebag for the AutoGeneratedFieldProperties. This property is read-only. 
        ///  
        private StateBag ViewState {
            get { 
                return _statebag;
            }
        }
 

        #region IStateManager implementation 
 
        /// 
        bool IStateManager.IsTrackingViewState { 
            get {
                return _isTracking;
            }
        } 

 
        ///  
        void IStateManager.LoadViewState(object state) {
            if (state != null) { 
                ((IStateManager)ViewState).LoadViewState(state);
            }
        }
 

        ///  
        object IStateManager.SaveViewState() { 
            object state = ((IStateManager)ViewState).SaveViewState();
            return state; 
        }


        ///  
        void IStateManager.TrackViewState() {
            _isTracking = true; 
            ViewState.TrackViewState(); 
        }
        #endregion 
    }
}


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI.WebControls { 
 
    using System;
    using System.ComponentModel; 
    using System.Reflection;
    using System.Security.Permissions;
    using System.Web.Util;
 

    ///  
    ///     
    ///       Stores the properties for an AutoGeneratedField.
    ///     
    /// 
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public sealed class AutoGeneratedFieldProperties : IStateManager {
        private bool _isTracking; 
        private StateBag _statebag;
 
 
        public AutoGeneratedFieldProperties() {
            _statebag = new StateBag(); 
        }


        public string DataField { 
            get {
                object o = ViewState["DataField"]; 
                if (o != null) { 
                    return (string)o;
                } 
                return String.Empty;
            }
            set {
                ViewState["DataField"] = value; 
            }
        } 
 

        public bool IsReadOnly { 
            get {
                object o = ViewState["IsReadOnly"];
                if (o != null) {
                    return (bool)o; 
                }
                return false; 
            } 
            set {
                ViewState["IsReadOnly"] = value; 
            }
        }

 
        public string Name {
            get { 
                object o = ViewState["Name"]; 
                if (o != null) {
                    return (string)o; 
                }
                return String.Empty;
            }
            set { 
                ViewState["Name"] = value;
            } 
        } 

 
        public Type Type {
            get {
                object o = ViewState["Type"];
                if (o != null) { 
                    return (Type)o;
                } 
                return null; 
            }
            set { 
                ViewState["Type"] = value;
            }
        }
 
        /// 
        /// Gets the statebag for the AutoGeneratedFieldProperties. This property is read-only. 
        ///  
        private StateBag ViewState {
            get { 
                return _statebag;
            }
        }
 

        #region IStateManager implementation 
 
        /// 
        bool IStateManager.IsTrackingViewState { 
            get {
                return _isTracking;
            }
        } 

 
        ///  
        void IStateManager.LoadViewState(object state) {
            if (state != null) { 
                ((IStateManager)ViewState).LoadViewState(state);
            }
        }
 

        ///  
        object IStateManager.SaveViewState() { 
            object state = ((IStateManager)ViewState).SaveViewState();
            return state; 
        }


        ///  
        void IStateManager.TrackViewState() {
            _isTracking = true; 
            ViewState.TrackViewState(); 
        }
        #endregion 
    }
}


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