System.Transactions.TransactionStateVolatileSPC.ChangeStateTransactionAborted C# (CSharp) Method

ChangeStateTransactionAborted() private method

private ChangeStateTransactionAborted ( InternalTransaction tx, Exception e ) : void
tx InternalTransaction
e Exception
return void
        internal override void ChangeStateTransactionAborted(InternalTransaction tx, Exception e)
        {
            if (tx._innerException == null)
            {
                tx._innerException = e;
            }

            // The durable enlistment must have aborted.  Go to the aborted state.
            TransactionStateAborted.EnterState(tx);
        }