Task.WhenAll Method
.NET Framework (current version)
Creates a task that will complete when all of the supplied tasks have completed.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | WhenAll(IEnumerable<Task>) | Creates a task that will complete when all of the Task objects in an enumerable collection have completed. |
![]() ![]() | WhenAll(Task[]) | Creates a task that will complete when all of the Task objects in an array have completed. |
![]() ![]() | WhenAll<TResult>(IEnumerable<Task<TResult>>) | Creates a task that will complete when all of the Task<TResult> objects in an enumerable collection have completed. |
![]() ![]() | WhenAll<TResult>(Task<TResult>[]) | Creates a task that will complete when all of the Task<TResult> objects in an array have completed. |
Show:

