| 1234567891011121314151617181920212223242526272829303132 |
- //
- // System.Data.Common.DbDataSourceEnumerator.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Common {
- public abstract class DbDataSourceEnumerator
- {
- #region Constructors
- [MonoTODO]
- protected DbDataSourceEnumerator ()
- {
- }
- #endregion // Constructors
- #region Methods
- public abstract DataTable GetDataSources ();
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|