ControlParser.cs 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Web.UI.Design.ControlParser
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.ComponentModel.Design;
  10. namespace System.Web.UI.Design
  11. {
  12. public sealed class ControlParser
  13. {
  14. private ControlParser ()
  15. {
  16. }
  17. [MonoTODO]
  18. public static Control ParseControl (IDesignerHost designerHost, string controlText)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public static Control ParseControl (IDesignerHost designerHost, string controlText, string directives)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public static ITemplate ParseTemplate (IDesignerHost designerHost, string templateText)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. public static ITemplate ParseTemplate (IDesignerHost designerHost, string templateText, string directives)
  34. {
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }