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

ForceRollback() публичный Метод

public ForceRollback ( System e ) : void
e System
Результат void
        public void ForceRollback(System.Exception e)
        {
        }

Same methods

PreparingEnlistment::ForceRollback ( ) : void
PreparingEnlistment::ForceRollback ( Exception e ) : void

Usage Example

 public void Prepare(PreparingEnlistment preparingEnlistment)
 {
   if (_transaction.IsValid(false) == false)
     preparingEnlistment.ForceRollback();
   else
     preparingEnlistment.Prepared();
 }
All Usage Examples Of System.Transactions.PreparingEnlistment::ForceRollback