Delegate AsyncAction<T1, T2, T3, T4>
Encapsulates an asynchronous method that has four parameters and does not return a value.
Equivalent to Func<T1, T2, T3, T4, Task>.
Namespace: Recore
Assembly: Recore.dll
Syntax
public delegate Task AsyncAction<in T1, in T2, in T3, in T4>(T1 arg1, T2 arg2, T3 arg3, T4 arg4);
Parameters
| Type | Name | Description |
|---|---|---|
| T1 | arg1 | |
| T2 | arg2 | |
| T3 | arg3 | |
| T4 | arg4 |
Returns
| Type | Description |
|---|---|
| Task |
Type Parameters
| Name | Description |
|---|---|
| T1 | |
| T2 | |
| T3 | |
| T4 |