System.Transactions.TransactionAbortedException
namespace System.Transactions
{
public enum TransactionStatus
{
Aborted = 2,
Active = 0,
Committed = 1,
InDoubt = 3
}
}
namespace System.Transactions
{
public class TransactionAbortedException : TransactionException
{
public TransactionAbortedException();
protected TransactionAbortedException(SerializationInfo info, StreamingContext context);
public TransactionAbortedException(string message);
public TransactionAbortedException(string message, Exception innerException);
}
}