ControlPersister.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //
  2. // System.Web.UI.Design.ControlPersister
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.ComponentModel.Design;
  10. using System.IO;
  11. namespace System.Web.UI.Design
  12. {
  13. public sealed class ControlPersister
  14. {
  15. private ControlPersister ()
  16. {
  17. }
  18. [MonoTODO]
  19. public static string PersistControl (Control control)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public static void PersistControl (TextWriter sw, Control control)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public static string PersistControl (Control control, IDesignerHost host)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. public static void PersistControl (TextWriter sw, Control control, IDesignerHost host)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public static string PersistInnerProperties (object component, IDesignerHost host)
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. [MonoTODO]
  44. public static void PersistInnerProperties (TextWriter sw, object component, IDesignerHost host)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. }
  49. }