Delegate AsyncFunc<T1, T2, T3, TResult>
Encapsulates an asynchronous method that has three parameters and returns a value of the type specified by the TResult
parameter.
Equivalent to Func<T1, T2, T3, Task<TResult>>
.
Assembly: Recore.dll
Syntax
public delegate Task<TResult> AsyncFunc<in T1, in T2, in T3, TResult>(T1 arg1, T2 arg2, T3 arg3);
Parameters
Type |
Name |
Description |
T1 |
arg1 |
|
T2 |
arg2 |
|
T3 |
arg3 |
|
Returns
Type |
Description |
Task<TResult> |
|
Type Parameters
Name |
Description |
T1 |
|
T2 |
|
T3 |
|
TResult |
|
Extension Methods