merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / class / System.Transactions / System.Transactions / IEnlistmentNotification.cs
1 //
2 // IEnlistmentNotification.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 interface IEnlistmentNotification
15         {
16                 void Commit (Enlistment enlistment);
17
18                 void InDoubt (Enlistment enlistment);
19
20                 void Prepare (PreparingEnlistment preparingEnlistment);
21
22                 void Rollback (Enlistment enlistment);
23         }
24 }
25
26 #endif