C-DEngine 5.105

TheCommonUtils..::..TaskWhenAll Method

Creates a task that completes when all of the provided tasks are complete.

Namespace:  nsCDEngine.BaseClasses
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static Task TaskWhenAll(
	IEnumerable<Task> tasks
)
Public Shared Function TaskWhenAll ( _
	tasks As IEnumerable(Of Task) _
) As Task
public:
static Task^ TaskWhenAll(
	IEnumerable<Task^>^ tasks
)

Parameters

tasks
Type: IEnumerable<(Of <(<'Task>)>)>

Return Value

A task that represents the completion of all the supplied tasks.