Format.cs 283 B

1234567891011121314151617181920212223
  1. //
  2. // System.Data.Sql.Format
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_2_0
  10. namespace System.Data.Sql {
  11. public enum Format
  12. {
  13. Unknown,
  14. UserDefined,
  15. Native,
  16. SerializedData,
  17. SerializedDataWithMetadata
  18. }
  19. }
  20. #endif