XPathAtomicValue.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. //
  2. // XPathAtomicValue.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2004 Novell Inc.
  8. //
  9. #if NET_2_0
  10. using System.Collections;
  11. using System.Xml;
  12. using System.Xml.Schema;
  13. namespace System.Xml.XPath
  14. {
  15. public sealed class XPathAtomicValue
  16. {
  17. #region Constructors
  18. [MonoTODO]
  19. public XPathAtomicValue (bool value, XmlSchemaType xmlType)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. [MonoTODO]
  24. public XPathAtomicValue (DateTime value, XmlSchemaType xmlType)
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. [MonoTODO]
  29. public XPathAtomicValue (decimal value, XmlSchemaType xmlType)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. public XPathAtomicValue (double value, XmlSchemaType xmlType)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public XPathAtomicValue (int value, XmlSchemaType xmlType)
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. [MonoTODO]
  44. public XPathAtomicValue (long value, XmlSchemaType xmlType)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. [MonoTODO]
  49. public XPathAtomicValue (object value, XmlSchemaType xmlType)
  50. {
  51. throw new NotImplementedException ();
  52. }
  53. [MonoTODO]
  54. public XPathAtomicValue (float value, XmlSchemaType xmlType)
  55. {
  56. throw new NotImplementedException ();
  57. }
  58. [MonoTODO]
  59. public XPathAtomicValue (string value, XmlSchemaType xmlType)
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. #endregion
  64. #region Methods
  65. [MonoTODO]
  66. public XPathAtomicValue Clone ()
  67. {
  68. throw new NotImplementedException ();
  69. }
  70. public object ValueAs (Type type)
  71. {
  72. return ValueAs (type, null);
  73. }
  74. [MonoTODO]
  75. public object ValueAs (Type type, IXmlNamespaceResolver nsResolver)
  76. {
  77. throw new NotImplementedException ();
  78. }
  79. #endregion
  80. #region Properties
  81. [MonoTODO]
  82. public bool IsNode {
  83. get { throw new NotImplementedException (); }
  84. }
  85. [MonoTODO]
  86. public object TypedValue {
  87. get { throw new NotImplementedException (); }
  88. }
  89. [MonoTODO]
  90. public string Value {
  91. get { throw new NotImplementedException (); }
  92. }
  93. [MonoTODO]
  94. public bool ValueAsBoolean {
  95. get { throw new NotImplementedException (); }
  96. }
  97. [MonoTODO]
  98. public DateTime ValueAsDateTime {
  99. get { throw new NotImplementedException (); }
  100. }
  101. [MonoTODO]
  102. public decimal ValueAsDecimal {
  103. get { throw new NotImplementedException (); }
  104. }
  105. [MonoTODO]
  106. public double ValueAsDouble {
  107. get { throw new NotImplementedException (); }
  108. }
  109. [MonoTODO]
  110. public int ValueAsInt32 {
  111. get { throw new NotImplementedException (); }
  112. }
  113. [MonoTODO]
  114. public long ValueAsInt64 {
  115. get { throw new NotImplementedException (); }
  116. }
  117. [MonoTODO]
  118. public ICollection ValueAsList {
  119. get { throw new NotImplementedException (); }
  120. }
  121. [MonoTODO]
  122. public float ValueAsSingle {
  123. get { throw new NotImplementedException (); }
  124. }
  125. [MonoTODO]
  126. public Type ValueType {
  127. get { throw new NotImplementedException (); }
  128. }
  129. [MonoTODO]
  130. public XmlSchemaType XmlType {
  131. get { throw new NotImplementedException (); }
  132. }
  133. #endregion
  134. }
  135. }
  136. #endif