TransactionStartedEventHandler Delegate

Definition

Represents the method that will handle the DistributedTransactionStarted event of a TransactionManager class.

public delegate void TransactionStartedEventHandler(System::Object ^ sender, TransactionEventArgs ^ e);
public delegate void TransactionStartedEventHandler(object? sender, TransactionEventArgs e);
public delegate void TransactionStartedEventHandler(object sender, TransactionEventArgs e);
type TransactionStartedEventHandler = delegate of obj * TransactionEventArgs -> unit
Public Delegate Sub TransactionStartedEventHandler(sender As Object, e As TransactionEventArgs)

Parameters

sender
Object

The source of the event.

e
TransactionEventArgs

The TransactionEventArgs that contains the transaction from which transaction information can be retrieved.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to