Files
linux-packaging-mono/mcs/class/System.Transactions/System.Transactions/ITransactionPromoter.cs

19 lines
218 B
C#
Raw Normal View History

//
// ITransactionPromoter.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// (C)2005 Novell Inc,
//
namespace System.Transactions
{
public interface ITransactionPromoter
{
byte [] Promote ();
}
}