Class TaskActionFactory
Provides access to factory methods for creating TaskActionFactory<TTuple> instances that encapsulate a System.Threading.Tasks.Task based function delegate with a variable amount of generic arguments.
Inheritance
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public static class TaskActionFactory
Methods
| Improve this DocCreate(Func<Task>)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
.
Declaration
public static TaskActionFactory<Template> Create(Func<Task> method)
Parameters
Type | Name | Description |
---|---|---|
System.Func<System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
Returns
Type | Description |
---|---|
TaskActionFactory<Template> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Create<T>(Func<T, Task>, T)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and one generic argument.
Declaration
public static TaskActionFactory<Template<T>> Create<T>(Func<T, Task> method, T arg)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T | arg | The parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T | The type of the parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and ten generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and eleven generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and twelfth generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
T12 | arg12 | The twelfth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
T12 | The type of the twelfth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and thirteen generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
T12 | arg12 | The twelfth parameter of the delegate |
T13 | arg13 | The thirteenth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
T12 | The type of the twelfth parameter of the delegate |
T13 | The type of the thirteenth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and fourteen generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
T12 | arg12 | The twelfth parameter of the delegate |
T13 | arg13 | The thirteenth parameter of the delegate |
T14 | arg14 | The fourteenth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
T12 | The type of the twelfth parameter of the delegate |
T13 | The type of the thirteenth parameter of the delegate |
T14 | The type of the fourteenth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and fifteen generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
T12 | arg12 | The twelfth parameter of the delegate |
T13 | arg13 | The thirteenth parameter of the delegate |
T14 | arg14 | The fourteenth parameter of the delegate |
T15 | arg15 | The fifteenth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
T12 | The type of the twelfth parameter of the delegate |
T13 | The type of the thirteenth parameter of the delegate |
T14 | The type of the fourteenth parameter of the delegate |
T15 | The type of the fifteenth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and sixteen generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, T16 arg16)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
T10 | arg10 | The tenth parameter of the delegate |
T11 | arg11 | The eleventh parameter of the delegate |
T12 | arg12 | The twelfth parameter of the delegate |
T13 | arg13 | The thirteenth parameter of the delegate |
T14 | arg14 | The fourteenth parameter of the delegate |
T15 | arg15 | The fifteenth parameter of the delegate |
T16 | arg16 | The sixteenth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |
T10 | The type of the tenth parameter of the delegate |
T11 | The type of the eleventh parameter of the delegate |
T12 | The type of the twelfth parameter of the delegate |
T13 | The type of the thirteenth parameter of the delegate |
T14 | The type of the fourteenth parameter of the delegate |
T15 | The type of the fifteenth parameter of the delegate |
T16 | The type of the sixteenth parameter of the delegate |
Create<T1, T2>(Func<T1, T2, Task>, T1, T2)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and two generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2>> Create<T1, T2>(Func<T1, T2, Task> method, T1 arg1, T2 arg2)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
Create<T1, T2, T3>(Func<T1, T2, T3, Task>, T1, T2, T3)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and three generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3>> Create<T1, T2, T3>(Func<T1, T2, T3, Task> method, T1 arg1, T2 arg2, T3 arg3)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
Create<T1, T2, T3, T4>(Func<T1, T2, T3, T4, Task>, T1, T2, T3, T4)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and four generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4>> Create<T1, T2, T3, T4>(Func<T1, T2, T3, T4, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
Create<T1, T2, T3, T4, T5>(Func<T1, T2, T3, T4, T5, Task>, T1, T2, T3, T4, T5)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and five generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5>> Create<T1, T2, T3, T4, T5>(Func<T1, T2, T3, T4, T5, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6>(Func<T1, T2, T3, T4, T5, T6, Task>, T1, T2, T3, T4, T5, T6)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and six generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6>> Create<T1, T2, T3, T4, T5, T6>(Func<T1, T2, T3, T4, T5, T6, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7>(Func<T1, T2, T3, T4, T5, T6, T7, Task>, T1, T2, T3, T4, T5, T6, T7)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and seven generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7>> Create<T1, T2, T3, T4, T5, T6, T7>(Func<T1, T2, T3, T4, T5, T6, T7, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8>(Func<T1, T2, T3, T4, T5, T6, T7, T8, Task>, T1, T2, T3, T4, T5, T6, T7, T8)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and eight generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8>> Create<T1, T2, T3, T4, T5, T6, T7, T8>(Func<T1, T2, T3, T4, T5, T6, T7, T8, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
Create<T1, T2, T3, T4, T5, T6, T7, T8, T9>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, Task>, T1, T2, T3, T4, T5, T6, T7, T8, T9)
Creates a new TaskActionFactory<TTuple> instance encapsulating the specified method
and nine generic arguments.
Declaration
public static TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9>> Create<T1, T2, T3, T4, T5, T6, T7, T8, T9>(Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, Task> method, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9)
Parameters
Type | Name | Description |
---|---|---|
System.Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, System.Threading.Tasks.Task> | method | The System.Threading.Tasks.Task based function delegate to invoke. |
T1 | arg1 | The first parameter of the delegate |
T2 | arg2 | The second parameter of the delegate |
T3 | arg3 | The third parameter of the delegate |
T4 | arg4 | The fourth parameter of the delegate |
T5 | arg5 | The fifth parameter of the delegate |
T6 | arg6 | The sixth parameter of the delegate |
T7 | arg7 | The seventh parameter of the delegate |
T8 | arg8 | The eighth parameter of the delegate |
T9 | arg9 | The ninth parameter of the delegate |
Returns
Type | Description |
---|---|
TaskActionFactory<Template<T1, T2, T3, T4, T5, T6, T7, T8, T9>> | An instance of TaskActionFactory<TTuple> object initialized with the specified |
Type Parameters
Name | Description |
---|---|
T1 | The type of the first parameter of the delegate |
T2 | The type of the second parameter of the delegate |
T3 | The type of the third parameter of the delegate |
T4 | The type of the fourth parameter of the delegate |
T5 | The type of the fifth parameter of the delegate |
T6 | The type of the sixth parameter of the delegate |
T7 | The type of the seventh parameter of the delegate |
T8 | The type of the eighth parameter of the delegate |
T9 | The type of the ninth parameter of the delegate |