Transaction.Rollback Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Rolls back (aborts) the transaction.
Overloads
Rollback() |
Rolls back (aborts) the transaction. |
Rollback(Exception) |
Rolls back (aborts) the transaction. |
Rollback()
- Source:
- Transaction.cs
- Source:
- Transaction.cs
- Source:
- Transaction.cs
Rolls back (aborts) the transaction.
public:
void Rollback();
public void Rollback ();
member this.Rollback : unit -> unit
Public Sub Rollback ()
Remarks
Any copy of a transaction object can initiate the rollback of the transaction by calling this method. Only the original transaction object, which is a CommittableTransaction object, can be used to initiate an attempt to commit the transaction. An exception is thrown when this method is called after the outcome of the transaction has already been determined.
Applies to
Rollback(Exception)
- Source:
- Transaction.cs
- Source:
- Transaction.cs
- Source:
- Transaction.cs
Rolls back (aborts) the transaction.
public:
void Rollback(Exception ^ e);
public void Rollback (Exception? e);
public void Rollback (Exception e);
member this.Rollback : Exception -> unit
Public Sub Rollback (e As Exception)
Parameters
An explanation of why a rollback occurred.