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.2.419.0 (24.2.419.0)
Syntax public delegate TResult TransactionalSelectCallback<TResult>(
Transaction arg
)
Public Delegate Function TransactionalSelectCallback(Of TResult) (
arg As Transaction
) As TResult
generic<typename TResult>
public delegate TResult TransactionalSelectCallback(
Transaction^ arg
)
type TransactionalSelectCallback =
delegate of
arg : Transaction -> 'TResult
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:
TResultThe return value of the callback.
See Also