Empty.cs 957 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // System.Data.ObjectSpaces.Query.Empty
  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 Empty : Expression
  15. {
  16. [MonoTODO()]
  17. public Empty() : 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 IsBoolean()
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO()]
  32. public override bool IsFilter()
  33. {
  34. throw new NotImplementedException();
  35. }
  36. [MonoTODO()]
  37. public override bool IsArithmetic()
  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 NodeType NodeType
  48. {
  49. get { throw new NotImplementedException(); }
  50. }
  51. }
  52. }
  53. #endif