2
0

DbCommandOptionalFeatures.cs 276 B

1234567891011121314151617181920
  1. //
  2. // System.Data.Common.DbCommandOptionalFeatures.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 DbCommandOptionalFeatures
  12. {
  13. ExecutePageReader,
  14. None
  15. }
  16. }
  17. #endif