MissingSchemaAction.cs 712 B

123456789101112131415161718
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MissingSchemaAction.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">amirhmy</owner>
  6. // <owner current="true" primary="false">markash</owner>
  7. // <owner current="false" primary="false">jasonzhu</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. public enum MissingSchemaAction {
  11. Add = 1,
  12. Ignore = 2,
  13. Error = 3,
  14. AddWithKey = 4
  15. }
  16. }