Conditional.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. //
  2. // System.Data.ObjectSpaces.Query.Conditional
  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 Conditional : Expression
  15. {
  16. [MonoTODO()]
  17. public Conditional(Expression condition,Expression tBranch,Expression fBranch) : 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. // Gets/sets the condition expression
  47. [MonoTODO()]
  48. public Expression Condition
  49. {
  50. get { throw new NotImplementedException(); }
  51. set { throw new NotImplementedException(); }
  52. }
  53. // Gets/sets the false branch expression
  54. [MonoTODO()]
  55. public Expression FBranch
  56. {
  57. get { throw new NotImplementedException(); }
  58. set { throw new NotImplementedException(); }
  59. }
  60. [MonoTODO()]
  61. public override bool IsConst
  62. {
  63. get { throw new NotImplementedException(); }
  64. }
  65. [MonoTODO()]
  66. public override NodeType NodeType
  67. {
  68. get { throw new NotImplementedException(); }
  69. }
  70. // Gets/sets the true branch expression
  71. [MonoTODO()]
  72. public Expression TBranch
  73. {
  74. get { throw new NotImplementedException(); }
  75. set { throw new NotImplementedException(); }
  76. }
  77. [MonoTODO()]
  78. public override Type ValueType
  79. {
  80. get { throw new NotImplementedException(); }
  81. }
  82. }
  83. }
  84. #endif