* Stubed rest of System.ComponentModel.Design.Serialization
[mono.git] / mcs / class / System / System.ComponentModel.Design.Serialization / InstanceDescriptor.cs
1 //
2 // System.ComponentModel.Design.Serialization.InstanceDescriptor
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 using System.Collections;
11 using System.Reflection;
12
13 namespace System.ComponentModel.Design.Serialization
14 {
15         public sealed class InstanceDescriptor
16         {
17                 [MonoTODO]
18                 public InstanceDescriptor (MemberInfo info, 
19                                            ICollection collection)
20                 {
21                 }
22
23                 [MonoTODO]
24                 public InstanceDescriptor(MemberInfo info, 
25                                           ICollection coolection, 
26                                           bool boolean)
27                 {
28                         throw new NotImplementedException();
29                 }
30
31                 public ICollection Arguments {
32                         [MonoTODO]
33                         get { throw new NotImplementedException(); }
34                 }
35
36                 public bool IsComplete {
37                         [MonoTODO]
38                         get { throw new NotImplementedException(); }
39                 }
40
41                 public MemberInfo MemberInfo {
42                         [MonoTODO]
43                         get { throw new NotImplementedException(); }
44                 }
45
46                 [MonoTODO]
47                 public object Invoke()
48                 {
49                         throw new NotImplementedException();
50                 }
51
52                 [MonoTODO]
53                 ~InstanceDescriptor()
54                 {
55                 }
56         }
57 }