private static void EndTransaction(TransactionHandle handle) { if (handle != null && handle.Status == TransactionStatus.Started) { handle.CommitTransaction(); } }
public void ForceCloseTransaction(TransactionHandle handle) { TransactionManager.Log("ForceCloseTransaction - AUTO STRAT: Ending Transaction"); if (handle != null && handle.Status == TransactionStatus.Started) { handle.CommitTransaction(); } }
public void ForceCloseTransaction(TransactionHandle handle) { TransactionManager.Log("ForceCloseTransaction - AUTO STRAT: Ending Transaction"); if (handle != null && handle.Status == TransactionStatus.Started) handle.CommitTransaction(); }
private static void EndTransaction(TransactionHandle handle) { if (handle != null && handle.Status == TransactionStatus.Started) handle.CommitTransaction(); }