| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Web.UI.Design.ControlParser
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (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 ();
- }
- }
- }
|