System.Transactions.VolatileEnlistmentPreparingAborting.EnterState C# (CSharp) Method

EnterState() private method

private EnterState ( InternalEnlistment enlistment ) : void
enlistment InternalEnlistment
return void
        internal override void EnterState(InternalEnlistment enlistment)
        {
            // Set the enlistment state
            enlistment.State = this;
        }

Usage Example

 internal override void InternalAborted(InternalEnlistment enlistment)
 {
     VolatileEnlistmentPreparingAborting.EnterState(enlistment);
 }