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

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

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