Property.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. //
  2. // System.Data.ObjectSpaces.Query.Property
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Xml;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class Property : Expression
  15. {
  16. [MonoTODO()]
  17. public Property(Expression source,string name) : base()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. [MonoTODO()]
  22. public override object Clone()
  23. {
  24. throw new NotImplementedException();
  25. }
  26. [MonoTODO()]
  27. public override bool IsArithmetic()
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO()]
  32. public override bool IsBoolean()
  33. {
  34. throw new NotImplementedException();
  35. }
  36. [MonoTODO()]
  37. public override bool IsFilter()
  38. {
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO()]
  42. public override void WriteXml(XmlWriter xmlw)
  43. {
  44. throw new NotImplementedException();
  45. }
  46. [MonoTODO()]
  47. public override bool IsConst
  48. {
  49. get { throw new NotImplementedException(); }
  50. }
  51. [MonoTODO()]
  52. public bool IsRelational
  53. {
  54. get { throw new NotImplementedException(); }
  55. }
  56. [MonoTODO()]
  57. public string Name
  58. {
  59. get { throw new NotImplementedException(); }
  60. set { throw new NotImplementedException(); }
  61. }
  62. [MonoTODO()]
  63. public override NodeType NodeType
  64. {
  65. get { throw new NotImplementedException(); }
  66. }
  67. [MonoTODO()]
  68. public Type OwnerClass
  69. {
  70. get { throw new NotImplementedException(); }
  71. set { throw new NotImplementedException(); }
  72. }
  73. [MonoTODO()]
  74. public object PhysicalInfo
  75. {
  76. get { throw new NotImplementedException(); }
  77. set { throw new NotImplementedException(); }
  78. }
  79. [MonoTODO()]
  80. public Type PropertyType
  81. {
  82. get { throw new NotImplementedException(); }
  83. set { throw new NotImplementedException(); }
  84. }
  85. [MonoTODO()]
  86. public Expression Source
  87. {
  88. get { throw new NotImplementedException(); }
  89. set { throw new NotImplementedException(); }
  90. }
  91. [MonoTODO()]
  92. public override Type ValueType
  93. {
  94. get { throw new NotImplementedException(); }
  95. }
  96. }
  97. }
  98. #endif