SchemaType.cs 323 B

1234567891011121314151617181920
  1. //
  2. // System.Data.SchemaType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies how to handle existing schema mappings when performing a FillSchema operation.
  13. /// </summary>
  14. public enum SchemaType
  15. {
  16. Mapped,
  17. Source
  18. }
  19. }