Click or drag to resize

TransactionalSelectCallbackTResult Delegate

This defines the delegate TransactionalSelectCallback, which is used whenever transactionally invoking a callback that needs to have a return value. This delegate contains only one argument, which is the transaction, and returns a variable of type TResult.

Namespace:  AGI.Foundation
Assembly:  AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public delegate TResult TransactionalSelectCallback<TResult>(
	Transaction arg
)

Parameters

arg
Type: AGI.FoundationTransaction
The transaction in which the callback is executed.

Type Parameters

TResult
The return type of the callback.

Return Value

Type: TResult
The return value of the callback.
See Also