| 12345678910111213141516171819202122232425262728 |
- //
- // System.Data.Common.DbProviderSupportedClasses.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Common {
- public enum DbProviderSupportedClasses
- {
- CodeAccessPermission,
- DbCommand,
- DbCommandBuilder,
- DbCommandSet,
- DbConnection,
- DbDataAdapter,
- DbDataSourceEnumerator,
- DbParameter,
- DbTable,
- None
- }
- }
- #endif
|