You've already forked linux-packaging-mono
33 lines
464 B
C#
33 lines
464 B
C#
//
|
|
// TransactionEventArgs.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
|
|
namespace System.Transactions
|
|
{
|
|
public class TransactionEventArgs : EventArgs
|
|
{
|
|
private Transaction transaction;
|
|
|
|
public TransactionEventArgs()
|
|
{
|
|
}
|
|
|
|
internal TransactionEventArgs(Transaction transaction)
|
|
: this()
|
|
{
|
|
this.transaction = transaction;
|
|
}
|
|
|
|
public Transaction Transaction {
|
|
get { return transaction; }
|
|
}
|
|
}
|
|
}
|
|
|