MissingSchemaAction.cs 386 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.MissingSchemaAction.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies the action to take when adding data to the DataSet and the required DataTable or DataColumn is missing.
  13. /// </summary>
  14. public enum MissingSchemaAction
  15. {
  16. Add,
  17. AddWithKey,
  18. Error,
  19. Ignore
  20. }
  21. }