IsolationLevel.cs 759 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // <copyright file="IsolationLevel.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. public enum IsolationLevel { // MDAC 74269
  10. Unspecified = unchecked((int)0xffffffff),
  11. Chaos = 0x10,
  12. ReadUncommitted = 0x100,
  13. ReadCommitted = 0x1000,
  14. RepeatableRead = 0x10000,
  15. Serializable = 0x100000,
  16. Snapshot = 0x1000000,
  17. }
  18. }