Task::WhenAll Method
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(array<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>(array<Task<TResult>^>^) | Creates a task that will complete when all of the Task<TResult> objects in an array have completed. |

