Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / System.Transactions / System.Transactions / IsolationLevel.cs
1 //
2 // IsolationLevel.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10
11 namespace System.Transactions
12 {
13         public enum IsolationLevel {
14                 Serializable,
15                 RepeatableRead,
16                 ReadCommitted,
17                 ReadUncommitted,
18                 Snapshot,
19                 Chaos,
20                 Unspecified
21         }
22 }
23