Delegate AsyncAction<T1, T2, T3>
- Namespace
- Executables
- Assembly
- executables.dll
Represents an asynchronous action with three input arguments.
public delegate ValueTask AsyncAction<in T1, in T2, in T3>(T1 arg1, T2 arg2, T3 arg3, CancellationToken token = default)
Parameters
arg1T1First input argument.
arg2T2Second input argument.
arg3T3Third input argument.
tokenCancellationTokenCancellation token.
Returns
- ValueTask
Asynchronous operation.
Type Parameters
T1Type of the first input argument.
T2Type of the second input argument.
T3Type of the third input argument.