Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ControlPersister.cs « System.Web.UI.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0eb921ce8963e3dad53e8827833f534a94fe5350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// System.Web.UI.Design.ControlPersister
//
// Authors:
//      Gert Driesen (drieseng@users.sourceforge.net)
//
// (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 ();
		}
	}
}