New test.
[mono.git] / mcs / class / System.Transactions / System.Transactions / DependentCloneOption.cs
1 //
2 // DependentCloneOption.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 DependentCloneOption {
15                 BlockCommitUntilComplete,
16                 RollbackIfNotComplete
17         }
18 }
19
20 #endif