System.Transactions.TransactionStateDelegated.Rollback C# (CSharp) Method

Rollback() private method

private Rollback ( InternalTransaction tx, Exception e ) : void
tx InternalTransaction
e Exception
return void
        internal override void Rollback(InternalTransaction tx, Exception e)
        {
            // Pass the Rollback through the promotable single phase enlistment to be
            // certain it is notified.

            if (tx._innerException == null)
            {
                tx._innerException = e;
            }

            TransactionStateDelegatedAborting.EnterState(tx);
        }