Locale.cs removed
[mono.git] / mcs / class / System.Data / System.Data / IsolationLevel.cs
1 //
2 // System.Data.IsolationLevel.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Specifies the transaction locking behavior for the connection.
14         /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
15         /// </summary>
16         [Flags]
17         [Serializable]
18         public enum IsolationLevel
19         {
20                 Unspecified = -1,
21                 Chaos = 16,
22                 ReadUncommitted = 256,
23                 ReadCommitted = 4096,
24                 RepeatableRead = 65536,
25                 Serializable = 1048576
26         }
27 }