Transaction.Rollback Method

Definition

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

e
Exception

An explanation of why a rollback occurred.

Applies to