XmlDesigner.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 / WebControls / XmlDesigner.cs / 1 / XmlDesigner.cs

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

namespace System.Web.UI.Design.WebControls { 
 
    using System;
    using System.Design; 
    using System.Collections;
    using System.ComponentModel;
    using System.ComponentModel.Design;
    using System.Data; 
    using System.Diagnostics;
    using System.Web.UI.Design; 
    using System.Web.UI.WebControls; 

    ///  
    /// 
    /// 
    ///    
    ///       Provides a designer for the  control. 
    ///    
    ///  
    [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] 
    public class XmlDesigner : ControlDesigner {
 
        private Xml xml;

        /// 
        ///  
        ///    
        ///       Initializes a new instance of the  class. 
        ///     
        /// 
        public XmlDesigner() { 
        }

        /// 
        ///  
        ///   Performs the cleanup of the designer class.
        ///  
        protected override void Dispose(bool disposing) { 
            if (disposing) {
                xml = null; 
            }

            base.Dispose(disposing);
        } 

        ///  
        ///  
        ///   Retrieves the HTML to be used for the design time representation
        ///   of the control. 
        /// 
        public override string GetDesignTimeHtml() {
            return GetEmptyDesignTimeHtml();
        } 

        ///  
        ///  
        /// 
        protected override string GetEmptyDesignTimeHtml() { 
            return CreatePlaceHolderDesignTimeHtml(SR.GetString(SR.Xml_Inst));
        }

        ///  
        /// 
        ///   Initializes the designer with the Repeater control that this instance 
        ///   of the designer is associated with. 
        /// 
        public override void Initialize(IComponent component) { 
            VerifyInitializeArgument(component, typeof(Xml));
            xml = (Xml)component;
            base.Initialize(component);
        } 

        ///  
        internal override string GetPersistInnerHtmlInternal() { 
            Xml xmlControl = (Xml)Component;
 
            string originalContent = (string)((IControlDesignerAccessor)xmlControl).GetDesignModeState()["OriginalContent"];
            if (originalContent != null) {
                return originalContent;
            } 

            return xmlControl.DocumentContent; 
        } 
    }
} 


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