System.Transactions.DurableEnlistmentDelegated.Committed C# (CSharp) Method

Committed() private method

private Committed ( InternalEnlistment enlistment ) : void
enlistment InternalEnlistment
return void
        internal override void Committed(InternalEnlistment enlistment)
        {
            // Transition to the ended state
            DurableEnlistmentEnded.EnterState(enlistment);

            // Change the transaction to committed.
            enlistment.Transaction.State.ChangeStatePromotedCommitted(enlistment.Transaction);
        }