* Stubed System.Runtime.Remoting.Metadata.W3cXsd2001
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Metadata.W3cXsd2001 / SoapQName.cs
1 //
2 // System.Runtime.Remoting.Metadata.W3cXsd2001.SoapQName
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 SoapQName : ISoapXsd
14         {
15                 [MonoTODO]
16                 public SoapQName()
17                 {
18                 }
19
20                 public string Key {
21                         [MonoTODO]
22                         get { throw new NotImplementedException(); } 
23
24                         [MonoTODO]
25                         set { throw new NotImplementedException(); }
26                 }
27
28                 public string Name {
29                         [MonoTODO]
30                         get { throw new NotImplementedException(); } 
31
32                         [MonoTODO]
33                         set { throw new NotImplementedException(); }
34                 }
35
36                 public string Namespace {
37                         [MonoTODO]
38                         get { throw new NotImplementedException(); } 
39
40                         [MonoTODO]
41                         set { throw new NotImplementedException(); }
42                 }
43
44                 public static string XsdType {
45                         [MonoTODO]
46                         get { throw new NotImplementedException(); }
47                 }
48
49                 [MonoTODO]
50                 public string GetXsdType()
51                 {
52                         throw new NotImplementedException();
53                 }
54                 
55                 [MonoTODO]
56                 public static SoapQName Parse (string value)
57                 {
58                         throw new NotImplementedException();
59                 }
60
61                 [MonoTODO]
62                 public override string ToString()
63                 {
64                         throw new NotImplementedException();
65                 }
66
67                 [MonoTODO]
68                 ~SoapQName()
69                 {
70                 }
71         }
72 }