SqlDataSourceEnumerator.cs 678 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // System.Data.Sql.SqlDataSourceEnumerator
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System;
  11. using System.Data.Common;
  12. namespace System.Data.Sql {
  13. public sealed class SqlDataSourceEnumerator : DbDataSourceEnumerator
  14. {
  15. #region Properties
  16. [MonoTODO]
  17. public static SqlDataSourceEnumerator Instance {
  18. get { throw new NotImplementedException (); }
  19. set { throw new NotImplementedException (); }
  20. }
  21. #endregion // Properties
  22. #region Methods
  23. [MonoTODO]
  24. public override DataTable GetDataSources ()
  25. {
  26. throw new NotImplementedException ();
  27. }
  28. #endregion // Methods
  29. }
  30. }
  31. #endif