ConflictOptions.cs 605 B

1234567891011121314151617
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ConflictOptions.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">markash</owner>
  6. // <owner current="true" primary="false">laled</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. public enum ConflictOption {
  10. CompareAllSearchableValues = 1,
  11. CompareRowVersion = 2,
  12. OverwriteChanges = 3,
  13. }
  14. }