Merge pull request #409 from Alkarex/patch-1
[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 #if NET_2_0
11
12 namespace System.Transactions
13 {
14         public enum IsolationLevel {
15                 Serializable,
16                 RepeatableRead,
17                 ReadCommitted,
18                 ReadUncommitted,
19                 Snapshot,
20                 Chaos,
21                 Unspecified
22         }
23 }
24
25 #endif