SchemaLocation.cs 255 B

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