Parent.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // System.Data.ObjectSpaces.Query.Parent
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. namespace System.Data.ObjectSpaces.Query
  11. {
  12. [MonoTODO()]
  13. public class Parent : Context
  14. {
  15. [MonoTODO()]
  16. public Parent(Context sContext) : base()
  17. {
  18. throw new NotImplementedException();
  19. }
  20. [MonoTODO()]
  21. public override object Clone()
  22. {
  23. throw new NotImplementedException();
  24. }
  25. [MonoTODO()]
  26. public override bool IsArithmetic()
  27. {
  28. throw new NotImplementedException();
  29. }
  30. [MonoTODO()]
  31. public override bool IsBoolean()
  32. {
  33. throw new NotImplementedException();
  34. }
  35. [MonoTODO()]
  36. public override bool IsFilter()
  37. {
  38. throw new NotImplementedException();
  39. }
  40. [MonoTODO()]
  41. public int Level
  42. {
  43. get { throw new NotImplementedException(); }
  44. }
  45. [MonoTODO()]
  46. public override NodeType NodeType
  47. {
  48. get { throw new NotImplementedException(); }
  49. }
  50. [MonoTODO()]
  51. public Context Source
  52. {
  53. get { throw new NotImplementedException(); }
  54. set { throw new NotImplementedException(); }
  55. }
  56. }
  57. }
  58. #endif