System.Transactions.TransactionStateDelegated.PromoteDurable C# (CSharp) Method

PromoteDurable() private method

private PromoteDurable ( InternalTransaction tx ) : bool
tx InternalTransaction
return bool
        internal override bool PromoteDurable(InternalTransaction tx)
        {
            // Let the enlistment know that it has been delegated.  For this type of enlistment that
            // is really all that needs to be done.
            tx._durableEnlistment.State.ChangeStateDelegated(tx._durableEnlistment);

            return true;
        }