DataSourceCollection.cs 933 B

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