| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- using System;
- namespace System.Xml
- {
- public class UniqueId
- {
- [MonoTODO]
- public UniqueId ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public UniqueId (byte [] id)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public UniqueId (Guid id)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public UniqueId (string id)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public UniqueId (byte [] id, int offset, int count)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public UniqueId (char [] id, int offset, int count)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public int CharArrayLength {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public bool IsGuid {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool Equals (Object obj)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int GetHashCode ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool operator == (UniqueId id1, UniqueId id2)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool operator != (UniqueId id1, UniqueId id2)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public int ToCharArray (char [] array, int offset)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool TryGetGuid (out Guid guid)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool TryGetGuid (byte [] buffer, int offset)
- {
- throw new NotImplementedException ();
- }
- }
- }
|