merge -r 58784:58785
[mono.git] / mcs / class / System.Transactions / System.Transactions / PreparingEnlistment.cs
1 //
2 // PreparingEnlistment.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 class PreparingEnlistment : Enlistment
15         {
16                 internal PreparingEnlistment ()
17                 {
18                 }
19
20                 [MonoTODO]
21                 public void ForceRollback ()
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 [MonoTODO]
27                 public void ForceRollback (Exception ex)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 public void Prepared ()
34                 {
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public byte [] RecoveryInformation ()
40                 {
41                         throw new NotImplementedException ();
42                 }
43         }
44 }
45
46 #endif