Unary.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // System.Data.ObjectSpaces.Query.Unary
  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 Unary : Expression
  15. {
  16. [MonoTODO()]
  17. public Unary(Expression operand,UnaryOperator _operator)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. [MonoTODO()]
  22. public override object Clone()
  23. {
  24. throw new NotImplementedException();
  25. }
  26. [MonoTODO()]
  27. public static object EvaluateConstant(Literal literal,UnaryOperator op)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO()]
  32. public override bool IsArithmetic()
  33. {
  34. throw new NotImplementedException();
  35. }
  36. [MonoTODO()]
  37. public override bool IsBoolean()
  38. {
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO()]
  42. public override bool IsFilter()
  43. {
  44. throw new NotImplementedException();
  45. }
  46. [MonoTODO()]
  47. public override void WriteXml(XmlWriter xmlw)
  48. {
  49. throw new NotImplementedException();
  50. }
  51. [MonoTODO()]
  52. public override bool IsConst
  53. {
  54. get { throw new NotImplementedException(); }
  55. }
  56. [MonoTODO()]
  57. public override NodeType NodeType
  58. {
  59. get { throw new NotImplementedException(); }
  60. }
  61. [MonoTODO()]
  62. public Expression Operand
  63. {
  64. get { throw new NotImplementedException(); }
  65. set { throw new NotImplementedException(); }
  66. }
  67. [MonoTODO()]
  68. public UnaryOperator Operator
  69. {
  70. get { throw new NotImplementedException(); }
  71. set { throw new NotImplementedException(); }
  72. }
  73. [MonoTODO()]
  74. public override Type ValueType
  75. {
  76. get { throw new NotImplementedException(); }
  77. }
  78. }
  79. }
  80. #endif