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

DesignerSerializerAttribute.cs « System.ComponentModel.Design.Serialization « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63bda45981031342bb45ff68a913f1bc22fcd7ca (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
//
// System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.cs
//
// Authors:
//      Martin Willemoes Hansen (mwh@sysrq.dk)
//
// (C) 2003 Martin Willemoes Hansen
//

namespace System.ComponentModel.Design.Serialization
{
	[AttributeUsage(AttributeTargets.Class |
			AttributeTargets.Interface)]
        public sealed class DesignerSerializerAttribute : Attribute
	{
		[MonoTODO]
		public DesignerSerializerAttribute (string serializerTypeName,
						    string baseSerializerTypeName)
		{
		}

		[MonoTODO]
		public DesignerSerializerAttribute (string serializerTypeName,
						    Type baseSerializerType)
		{
		}

		[MonoTODO]
		public DesignerSerializerAttribute (Type serializerType,
						    Type baseSerializerType)
		{
		}

		public string SerializerBaseTypeName {
			[MonoTODO]
			get { throw new NotImplementedException(); }
		}

		public string SerializerTypeName {
			[MonoTODO]
			get { throw new NotImplementedException(); }
		}

		public override object TypeId {
			[MonoTODO]
			get { throw new NotImplementedException(); }
		}

		[MonoTODO]
		public override int GetHashCode()
		{
			throw new NotImplementedException();
		}
	}
}