DbProviderSupportedClasses.cs 415 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Data.Common.DbProviderSupportedClasses.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Common {
  11. public enum DbProviderSupportedClasses
  12. {
  13. CodeAccessPermission,
  14. DbCommand,
  15. DbCommandBuilder,
  16. DbCommandSet,
  17. DbConnection,
  18. DbDataAdapter,
  19. DbDataSourceEnumerator,
  20. DbParameter,
  21. DbTable,
  22. None
  23. }
  24. }
  25. #endif