Delegate AsyncFunc<T1, T2, T3, T4, TResult>
- Namespace
- Executables
- Assembly
- executables.dll
Represents an asynchronous function with four input arguments and a result.
public delegate ValueTask<TResult> AsyncFunc<in T1, in T2, in T3, in T4, TResult>(T1 arg1, T2 arg2, T3 arg3, T4 arg4, CancellationToken token = default)
Parameters
arg1T1First input argument.
arg2T2Second input argument.
arg3T3Third input argument.
arg4T4Fourth input argument.
tokenCancellationTokenCancellation token.
Returns
- ValueTask<TResult>
Asynchronous operation producing a result.
Type Parameters
T1Type of the first input argument.
T2Type of the second input argument.
T3Type of the third input argument.
T4Type of the fourth input argument.
TResultType of the function result.