ControlParser.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / ControlParser.cs / 1 / ControlParser.cs

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

namespace System.Web.UI.Design { 
 
    using System;
    using System.ComponentModel; 
    using System.ComponentModel.Design;
    using System.Diagnostics;
    using System.Reflection;
    using System.Text; 
    using System.Web.UI;
 
    ///  
    /// 
    ///    [To be supplied.] 
    /// 
    [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)]
    public sealed class ControlParser {
 
        private ControlParser() {
        } 
 
        /// 
        ///  
        ///    [To be supplied.]
        /// 
        public static Control ParseControl(IDesignerHost designerHost, string controlText) {
            if (designerHost == null) { 
                throw new ArgumentNullException("designerHost");
            } 
            if ((controlText == null) || (controlText.Length == 0)) { 
                throw new ArgumentNullException("controlText");
            } 

            return ControlSerializer.DeserializeControl(controlText, designerHost);
        }
 
        /// 
        ///  
        ///    [To be supplied.] 
        /// 
        internal static Control ParseControl(IDesignerHost designerHost, string controlText, bool applyTheme) { 
            if (designerHost == null) {
                throw new ArgumentNullException("designerHost");
            }
            if ((controlText == null) || (controlText.Length == 0)) { 
                throw new ArgumentNullException("controlText");
            } 
 
            return ControlSerializer.DeserializeControlInternal(controlText, designerHost, applyTheme);
        } 

        /// 
        /// 
        ///    [To be supplied.] 
        /// 
        public static Control ParseControl(IDesignerHost designerHost, string controlText, string directives) { 
            if (designerHost == null) { 
                throw new ArgumentNullException("designerHost");
            } 
            if ((controlText == null) || (controlText.Length == 0)) {
                throw new ArgumentNullException("controlText");
            }
 
            if ((directives != null) && (directives.Length != 0)) {
                controlText = directives + controlText; 
            } 

            return ControlSerializer.DeserializeControl(controlText, designerHost); 
        }

        public static Control[] ParseControls(IDesignerHost designerHost, string controlText) {
            if (designerHost == null) { 
                throw new ArgumentNullException("designerHost");
            } 
            if ((controlText == null) || (controlText.Length == 0)) { 
                throw new ArgumentNullException("controlText");
            } 

            return ControlSerializer.DeserializeControls(controlText, designerHost);
        }
 
        /// 
        ///  
        ///    [To be supplied.] 
        /// 
        public static ITemplate ParseTemplate(IDesignerHost designerHost, string templateText) { 
            if (designerHost == null) {
                throw new ArgumentNullException("designerHost");
            }
 
            return ControlSerializer.DeserializeTemplate(templateText, designerHost);
        } 
 
        /// 
        ///  
        ///    [To be supplied.]
        /// 
        public static ITemplate ParseTemplate(IDesignerHost designerHost, string templateText, string directives) {
            if (designerHost == null) { 
                throw new ArgumentNullException("designerHost");
            } 
 
            return ControlSerializer.DeserializeTemplate(templateText, designerHost);
        } 
    }
}


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