// // System.Web.UI.Design.ControlParser // // Authors: // Gert Driesen (drieseng@users.sourceforge.net) // // (C) 2004 Novell // using System.ComponentModel.Design; namespace System.Web.UI.Design { public sealed class ControlParser { private ControlParser () { } [MonoTODO] public static Control ParseControl (IDesignerHost designerHost, string controlText) { throw new NotImplementedException (); } [MonoTODO] public static Control ParseControl (IDesignerHost designerHost, string controlText, string directives) { throw new NotImplementedException (); } [MonoTODO] public static ITemplate ParseTemplate (IDesignerHost designerHost, string templateText) { throw new NotImplementedException (); } [MonoTODO] public static ITemplate ParseTemplate (IDesignerHost designerHost, string templateText, string directives) { throw new NotImplementedException (); } } }