Elastacloud.AzureManagement.Fluent.ServiceOrchestrator.Rollback C# (CSharp) Method

Rollback() public method

Used to rollback the transaction in the event of failure
public Rollback ( ) : void
return void
        public void Rollback()
        {
            foreach (IServiceTransaction serviceTransaction in _transactionList)
                serviceTransaction.Rollback();
        }