FieldJoinCollection.cs 815 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // System.Data.Mapping.FieldJoinCollection
  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 FieldJoinCollection : ReadOnlyCollectionBase
  14. {
  15. #region Properties
  16. [MonoTODO]
  17. public FieldJoin this [int index] {
  18. get { throw new NotImplementedException (); }
  19. }
  20. #endregion // Properties
  21. #region Methods
  22. [MonoTODO]
  23. public bool Contains (FieldJoin dataSource)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. public void CopyTo (FieldJoin[] array, int index)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. #endregion // Methods
  33. }
  34. }
  35. #endif // NET_1_2