UniqueId.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using System;
  2. namespace System.Xml
  3. {
  4. public class UniqueId
  5. {
  6. [MonoTODO]
  7. public UniqueId ()
  8. {
  9. throw new NotImplementedException ();
  10. }
  11. [MonoTODO]
  12. public UniqueId (byte [] id)
  13. {
  14. throw new NotImplementedException ();
  15. }
  16. [MonoTODO]
  17. public UniqueId (Guid id)
  18. {
  19. throw new NotImplementedException ();
  20. }
  21. [MonoTODO]
  22. public UniqueId (string id)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. public UniqueId (byte [] id, int offset, int count)
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. [MonoTODO]
  32. public UniqueId (char [] id, int offset, int count)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public int CharArrayLength {
  38. get { throw new NotImplementedException (); }
  39. }
  40. [MonoTODO]
  41. public bool IsGuid {
  42. get { throw new NotImplementedException (); }
  43. }
  44. [MonoTODO]
  45. public override bool Equals (Object obj)
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public override int GetHashCode ()
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public static bool operator == (UniqueId id1, UniqueId id2)
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. public static bool operator != (UniqueId id1, UniqueId id2)
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. [MonoTODO]
  65. public int ToCharArray (char [] array, int offset)
  66. {
  67. throw new NotImplementedException ();
  68. }
  69. [MonoTODO]
  70. public override string ToString ()
  71. {
  72. throw new NotImplementedException ();
  73. }
  74. [MonoTODO]
  75. public bool TryGetGuid (out Guid guid)
  76. {
  77. throw new NotImplementedException ();
  78. }
  79. [MonoTODO]
  80. public bool TryGetGuid (byte [] buffer, int offset)
  81. {
  82. throw new NotImplementedException ();
  83. }
  84. }
  85. }