* Stubed System.Runtime.Remoting.Metadata.W3cXsd2001
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Metadata.W3cXsd2001 / SoapNotation.cs
1 //
2 // System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNotation
3 //
4 // Authors:
5 //      Martin Willemoes Hansen (mwh@sysrq.dk)
6 //
7 // (C) 2003 Martin Willemoes Hansen
8 //
9
10 namespace System.Runtime.Remoting.Metadata.W3cXsd2001 
11 {
12         [Serializable]
13         public sealed class SoapNotation : ISoapXsd
14         {
15                 [MonoTODO]
16                 public SoapNotation()
17                 {
18                 }
19                 
20                 public string Value {
21                         [MonoTODO]
22                         get { throw new NotImplementedException(); } 
23
24                         [MonoTODO]
25                         set { throw new NotImplementedException(); }
26                 }
27
28                 public static string XsdType {
29                         [MonoTODO]
30                         get { throw new NotImplementedException(); }
31                 }
32
33                 [MonoTODO]
34                 public string GetXsdType()
35                 {
36                         throw new NotImplementedException();
37                 }
38                 
39                 [MonoTODO]
40                 public static SoapNotation Parse (string value)
41                 {
42                         throw new NotImplementedException();
43                 }
44
45                 [MonoTODO]
46                 public override string ToString()
47                 {
48                         throw new NotImplementedException();
49                 }
50
51                 [MonoTODO]
52                 ~SoapNotation()
53                 {
54                 }
55         }
56 }