| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //
- // System.Web.UI.Design.ControlPersister
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.ComponentModel.Design;
- using System.IO;
- namespace System.Web.UI.Design
- {
- public sealed class ControlPersister
- {
- private ControlPersister ()
- {
- }
- [MonoTODO]
- public static string PersistControl (Control control)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void PersistControl (TextWriter sw, Control control)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string PersistControl (Control control, IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void PersistControl (TextWriter sw, Control control, IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static string PersistInnerProperties (object component, IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static void PersistInnerProperties (TextWriter sw, object component, IDesignerHost host)
- {
- throw new NotImplementedException ();
- }
- }
- }
|