SqlBulkCopyOptions.cs 834 B

1234567891011121314151617181920212223242526
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlBulkCopyOptions.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">mithomas</owner>
  6. // <owner current="true" primary="false">blained</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.SqlClient {
  9. [Flags]
  10. public enum SqlBulkCopyOptions {
  11. Default = 0,
  12. KeepIdentity = 1 << 0,
  13. CheckConstraints = 1 << 1,
  14. TableLock = 1 << 2,
  15. KeepNulls = 1 << 3,
  16. FireTriggers = 1 << 4,
  17. UseInternalTransaction = 1 << 5,
  18. AllowEncryptedValueModifications = 1 << 6,
  19. }
  20. }