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