OrderBy.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //
  2. // System.Data.ObjectSpaces.Query.OrderBy
  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 OrderBy : Expression
  15. {
  16. [MonoTODO()]
  17. public OrderBy(Expression source,OrderByItemCollection orderByItems)
  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. [MonoTODO()]
  47. public override NodeType NodeType
  48. {
  49. get { throw new NotImplementedException(); }
  50. }
  51. [MonoTODO()]
  52. public OrderByItemCollection OrderByItems
  53. {
  54. get { throw new NotImplementedException(); }
  55. set { throw new NotImplementedException(); }
  56. }
  57. [MonoTODO()]
  58. public Expression Source
  59. {
  60. get { throw new NotImplementedException(); }
  61. set { throw new NotImplementedException(); }
  62. }
  63. [MonoTODO()]
  64. public override Type ValueType
  65. {
  66. get { throw new NotImplementedException(); }
  67. }
  68. }
  69. }
  70. #endif