System.Transactions.TransactionStatePromotedPhase1.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;
            }

            // This change state event at this point would be caused by one of the enlistments
            // aborting.  Really change to P1Aborting
            TransactionStatePromotedP1Aborting.EnterState(tx);
        }