ControlDesignerState.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / ControlDesignerState.cs / 1 / ControlDesignerState.cs

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

namespace System.Web.UI.Design { 
 
    using System;
    using System.Collections; 
    using System.ComponentModel;
    using System.ComponentModel.Design;

    ///  
    /// Class to wrap the IComponentDesignerStateService
    /// to expose a simple indexer property. 
    ///  
    [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)]
    public sealed class ControlDesignerState { 
        private IDictionary _designerState;
        private IComponent _component;

        internal ControlDesignerState(IComponent component) { 
            _component = component;
        } 
 
        public object this[string key] {
            get { 
                if (_designerState == null) {
                    // Try to use designer state service
                    if ((_component != null) && (_component.Site != null)) {
                        IComponentDesignerStateService designerStateService = (IComponentDesignerStateService)_component.Site.GetService(typeof(IComponentDesignerStateService)); 
                        if (designerStateService != null) {
                            return designerStateService.GetState(_component, key); 
                        } 
                    }
 
                    // State service does not exist, use private hashtable instead
                    _designerState = new Hashtable();
                }
                return _designerState[key]; 
            }
            set { 
                if (_designerState == null) { 
                    // Try to use designer state service
                    if ((_component != null) && (_component.Site != null)) { 
                        IComponentDesignerStateService designerStateService = (IComponentDesignerStateService)_component.Site.GetService(typeof(IComponentDesignerStateService));
                        if (designerStateService != null) {
                            designerStateService.SetState(_component, key, value);
                            return; 
                        }
                    } 
 
                    // State service does not exist, use private hashtable instead
                    _designerState = new Hashtable(); 
                }
                _designerState[key] = value;
            }
        } 
    }
} 
 

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