MessageQueueTransaction.Abort 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 the pending internal transaction.
public:
void Abort();
public void Abort ();
member this.Abort : unit -> unit
Public Sub Abort ()
Exceptions
The internal transaction you are attempting to roll back has not started.
An internal Message Queuing error occurs.
Remarks
Abort marks the unsuccessful completion of a process begun at a call to Begin.
Typically, one makes a call to Begin within a Try...Catch
exception-handling block, putting a call to Commit in the Try
clause, and a call to Abort in the Catch
clause.
Abort rolls back the entire transaction. This includes all messages sent or received after the call to Begin.