// // Delegates.cs // // Author: // Atsushi Enomoto // // (C)2005 Novell Inc, // namespace System.Transactions { public delegate Transaction HostCurrentTransactionCallback (); public delegate void TransactionCompletedEventHandler (object sender, TransactionEventArgs e); public delegate void TransactionStartedEventHandler (object sender, TransactionEventArgs e); }