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

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

private RecoveryInformation ( InternalEnlistment enlistment ) : byte[]
enlistment InternalEnlistment
Результат byte[]
        internal override byte[] RecoveryInformation(InternalEnlistment enlistment)
        {
            Monitor.Exit(enlistment.SyncRoot);
            try
            {
                return enlistment.PromotedEnlistment.GetRecoveryInformation();
            }
            finally
            {
                Monitor.Enter(enlistment.SyncRoot);
            }
        }