Click or drag to resize
ITransaction Methods

The ITransaction type exposes the following members.

Methods
  NameDescription
Public methodAdd
Adds the passed in object as a participant of this transaction.
Public methodAddAuditor
Adds the auditor passed in to the set of auditors to get audit entities from at commit.
Public methodCommit
Commits the controlled ado.net transaction
(Inherited from ITransactionController.)
Public methodDispose
Disposes the instance
Public methodRemove
Removes the passed in object from the transaction.
Public methodRollback
Rolls back the controlled ado.net transaction
(Inherited from ITransactionController.)
Public methodRollback(String)
Rolls back the transaction in action to the savepoint with the name savepointName. No internal objects are being reset when this method is called, so call this Rollback overload only to roll back to a savepoint. To roll back a complete transaction, call Rollback() without specifying a savepoint name. Create a savepoint by calling Save(savePointName)
Public methodSave
Creates a savepoint with the name savePointName in the current transaction. You can roll back to this savepoint using Rollback(String).
Top
See Also