2
0

IsolationLevel.cs 479 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Data.IsolationLevel.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 transaction locking behavior for the connection.
  13. /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. public enum IsolationLevel
  16. {
  17. Chaos,
  18. ReadCommitted,
  19. ReadUnCommitted,
  20. RepeatableRead,
  21. Serializable,
  22. Unspecified
  23. }
  24. }