| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Data.Sql.SqlDataSourceEnumerator
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System;
- using System.Data.Common;
- namespace System.Data.Sql {
- public sealed class SqlDataSourceEnumerator : DbDataSourceEnumerator
- {
- #region Properties
- [MonoTODO]
- public static SqlDataSourceEnumerator Instance {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override DataTable GetDataSources ()
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|