XPathAtomicValue.cs 3.0 KB

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