System.Transactions.EnlistmentStatePromoted.Committed C# (CSharp) 메소드

Committed() 개인적인 메소드

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