Axis.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // System.Data.ObjectSpaces.Query.Axis
  3. //
  4. //
  5. // Authors:
  6. // Richard Thombs ([email protected])
  7. // Tim Coleman ([email protected])
  8. //
  9. #if NET_1_2
  10. using System.Xml;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class Axis : Filter
  15. {
  16. [MonoTODO()]
  17. public Axis(Expression source,Expression constraint) : base(source,constraint)
  18. {
  19. throw new NotImplementedException();
  20. }
  21. [MonoTODO()]
  22. public override bool IsConst {
  23. get { throw new NotImplementedException(); }
  24. }
  25. [MonoTODO()]
  26. public override NodeType NodeType {
  27. get { throw new NotImplementedException(); }
  28. }
  29. [MonoTODO()]
  30. public override object Clone()
  31. {
  32. throw new NotImplementedException();
  33. }
  34. [MonoTODO()]
  35. public override bool IsArithmetic()
  36. {
  37. throw new NotImplementedException();
  38. }
  39. [MonoTODO()]
  40. public override bool IsBoolean()
  41. {
  42. throw new NotImplementedException();
  43. }
  44. [MonoTODO()]
  45. public override bool IsFilter()
  46. {
  47. throw new NotImplementedException();
  48. }
  49. [MonoTODO()]
  50. public override void WriteXml(XmlWriter xmlw)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. }
  55. }
  56. #endif