UniqueId.cs 1.7 KB

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