2005-09-22 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / System.Transactions / System.Transactions / Delegates.cs
1 //
2 // Delegates.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 delegate Transaction HostCurrentTransactionCallback ();
15         public delegate void TransactionCompletedEventHandler (object o,
16                 TransactionEventArgs e);
17         public delegate void TransactionStartedEventHandler (object o,
18                 TransactionEventArgs e);
19 }
20
21 #endif