System.Transactions.DurableEnlistmentCommitting.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);

            // Make the transaction commit
            enlistment.Transaction.State.ChangeStateTransactionCommitted(enlistment.Transaction);
        }