2
0

RelationshipCollection.cs 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // System.Data.Mapping.RelationshipCollection
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.SqlXml;
  11. using System.Collections;
  12. namespace System.Data.Mapping {
  13. public class RelationshipCollection : ReadOnlyCollectionBase
  14. {
  15. #region Properties
  16. [MonoTODO]
  17. public Relationship this [int index] {
  18. get { throw new NotImplementedException (); }
  19. }
  20. #endregion // Properties
  21. #region Methods
  22. [MonoTODO]
  23. public bool Contains (Relationship dataSource)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public void CopyTo (Relationship[] array, int index)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. #endregion // Methods
  33. }
  34. }
  35. #endif // NET_1_2