Task.WaitAll Method
.NET Framework (current version)
Waits for all of the provided Task objects to complete execution.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | WaitAll(Task[]) | Waits for all of the provided Task objects to complete execution. |
![]() ![]() | WaitAll(Task[], CancellationToken) | Waits for all of the provided Task objects to complete execution unless the wait is cancelled. |
![]() ![]() | WaitAll(Task[], Int32) | Waits for all of the provided Task objects to complete execution within a specified number of milliseconds. |
![]() ![]() | WaitAll(Task[], Int32, CancellationToken) | Waits for all of the provided Task objects to complete execution within a specified number of milliseconds or until the wait is cancelled. |
![]() ![]() | WaitAll(Task[], TimeSpan) | Waits for all of the provided cancellable Task objects to complete execution within a specified time interval. |
Show:

