System.Transactions.EnlistmentStatePromoted.ForceRollback C# (CSharp) Метод

ForceRollback() приватный Метод

private ForceRollback ( InternalEnlistment enlistment, Exception e ) : void
enlistment InternalEnlistment
e Exception
Результат void
        internal override void ForceRollback(InternalEnlistment enlistment, Exception e)
        {
            Monitor.Exit(enlistment.SyncRoot);
            try
            {
                enlistment.PromotedEnlistment.ForceRollback(e);
            }
            finally
            {
                Monitor.Enter(enlistment.SyncRoot);
            }
        }