2005-09-22 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Runtime.Serialization / System.Xml / UniqueId.cs
1 #if NET_2_0
2 using System;
3
4 namespace System.Xml
5 {
6         public class UniqueId
7         {
8                 [MonoTODO]
9                 public UniqueId ()
10                 {
11                         throw new NotImplementedException ();
12                 }
13
14                 [MonoTODO]
15                 public UniqueId (byte [] id)
16                 {
17                         throw new NotImplementedException ();
18                 }
19
20                 [MonoTODO]
21                 public UniqueId (Guid id)
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 [MonoTODO]
27                 public UniqueId (string id)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 public UniqueId (byte [] id, int offset, int count)
34                 {
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public UniqueId (char [] id, int offset, int count)
40                 {
41                         throw new NotImplementedException ();
42                 }
43
44                 [MonoTODO]
45                 public int CharArrayLength {
46                         get { throw new NotImplementedException (); }
47                 }
48
49                 [MonoTODO]
50                 public bool IsGuid {
51                         get { throw new NotImplementedException (); }
52                 }
53
54                 [MonoTODO]
55                 public override bool Equals (Object obj)
56                 {
57                         throw new NotImplementedException ();
58                 }
59
60                 [MonoTODO]
61                 public override int GetHashCode ()
62                 {
63                         throw new NotImplementedException ();
64                 }
65
66                 [MonoTODO]
67                 public static bool operator == (UniqueId id1, UniqueId id2)
68                 {
69                         throw new NotImplementedException ();
70                 }
71
72                 [MonoTODO]
73                 public static bool operator != (UniqueId id1, UniqueId id2)
74                 {
75                         throw new NotImplementedException ();
76                 }
77
78                 [MonoTODO]
79                 public int ToCharArray (char [] array, int offset)
80                 {
81                         throw new NotImplementedException ();
82                 }
83
84                 [MonoTODO]
85                 public override string ToString ()
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 [MonoTODO]
91                 public bool TryGetGuid (out Guid guid)
92                 {
93                         throw new NotImplementedException ();
94                 }
95
96                 [MonoTODO]
97                 public bool TryGetGuid (byte [] buffer, int offset)
98                 {
99                         throw new NotImplementedException ();
100                 }
101         }
102 }
103 #endif