System.Transactions.EnlistmentStatePromoted.Committed C# (CSharp) Méthode

Committed() private méthode

private Committed ( InternalEnlistment enlistment ) : void
enlistment InternalEnlistment
Résultat void
        internal override void Committed(InternalEnlistment enlistment)
        {
            Monitor.Exit(enlistment.SyncRoot);
            try
            {
                enlistment.PromotedEnlistment.Committed();
            }
            finally
            {
                Monitor.Enter(enlistment.SyncRoot);
            }
        }