SpanPropertyCollection.cs 906 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Data.ObjectSpaces.Query.SpanPropertyCollection
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Collections;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class SpanPropertyCollection : CollectionBase
  15. {
  16. [MonoTODO()]
  17. public SpanPropertyCollection() : base()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. [MonoTODO()]
  22. public SpanPropertyCollection Clone()
  23. {
  24. throw new NotImplementedException();
  25. }
  26. [MonoTODO()]
  27. public void Add(SpanProperty spanProperty)
  28. {
  29. throw new NotImplementedException();
  30. }
  31. [MonoTODO()]
  32. public void AddRoot(SpanProperty spanProperty)
  33. {
  34. throw new NotImplementedException();
  35. }
  36. // FIXME: This isn't right
  37. [MonoTODO()]
  38. public SpanProperty Item
  39. {
  40. get { throw new NotImplementedException(); }
  41. set { throw new NotImplementedException(); }
  42. }
  43. }
  44. }
  45. #endif