Span.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. //
  2. // System.Data.ObjectSpaces.Query.Span
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Xml;
  11. using System.Collections;
  12. namespace System.Data.ObjectSpaces.Query
  13. {
  14. [MonoTODO()]
  15. public class Span : Expression
  16. {
  17. [MonoTODO()]
  18. public Span(Expression source,SpanPropertyCollection spanProperties) : base()
  19. {
  20. throw new NotImplementedException();
  21. }
  22. [MonoTODO()]
  23. public override object Clone()
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO()]
  28. public void AddToSpanList(SpanProperty sp,ArrayList spanList)
  29. {
  30. throw new NotImplementedException();
  31. }
  32. [MonoTODO()]
  33. public ArrayList GetSpanList()
  34. {
  35. throw new NotImplementedException();
  36. }
  37. [MonoTODO()]
  38. public void SetSpanProperties(SpanPropertyCollection spanProperties)
  39. {
  40. throw new NotImplementedException();
  41. }
  42. [MonoTODO()]
  43. public override void WriteXml(XmlWriter xmlw)
  44. {
  45. throw new NotImplementedException();
  46. }
  47. [MonoTODO()]
  48. public override NodeType NodeType
  49. {
  50. get { throw new NotImplementedException(); }
  51. }
  52. [MonoTODO()]
  53. public Expression Source
  54. {
  55. get { throw new NotImplementedException(); }
  56. set { throw new NotImplementedException(); }
  57. }
  58. [MonoTODO()]
  59. public SpanPropertyCollection SpanProperties
  60. {
  61. get { throw new NotImplementedException(); }
  62. }
  63. [MonoTODO()]
  64. public override Type ValueType
  65. {
  66. get { throw new NotImplementedException(); }
  67. }
  68. }
  69. }
  70. #endif