WaitHandle.WaitAll Method (WaitHandle[])
Waits for all the elements in the specified array to receive a signal.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- waitHandles
-
Type:
System.Threading.WaitHandle[]
A WaitHandle array containing the objects for which the current instance will wait. This array cannot contain multiple references to the same object.
Return Value
Type: System.Booleantrue when every element in waitHandles has received a signal; otherwise the method never returns.
| Exception | Condition | ||
|---|---|---|---|
| ArgumentNullException | The waitHandles parameter is null. -or- One or more of the objects in the waitHandles array are null. -or- waitHandles is an array with no elements and the .NET Framework version is 2.0 or later. | ||
| DuplicateWaitObjectException |
The waitHandles array contains elements that are duplicates. | ||
| NotSupportedException | The number of objects in waitHandles is greater than the system permits. -or- The STAThreadAttribute attribute is applied to the thread procedure for the current thread, and waitHandles contains more than one element. | ||
| ApplicationException | waitHandles is an array with no elements and the .NET Framework version is 1.0 or 1.1. | ||
| AbandonedMutexException | The wait terminated because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. | ||
| InvalidOperationException | The waitHandles array contains a transparent proxy for a WaitHandle in another application domain. |
AbandonedMutexException is new in the .NET Framework version 2.0. In previous versions, the WaitAll method returns true when a mutex is abandoned. An abandoned mutex often indicates a serious coding error. In the case of a system-wide mutex, it might indicate that an application has been terminated abruptly (for example, by using Windows Task Manager). The exception contains information useful for debugging.
The WaitAll method returns when all the handles are signaled. On some implementations, if more than 64 handles are passed, a NotSupportedException is thrown. If the array contains duplicates, the call fails with a DuplicateWaitObjectException.
Note |
|---|
The WaitAll method is not supported on threads that have STAThreadAttribute. |
Calling this method overload is equivalent to calling the WaitAll(WaitHandle[], Int32, Boolean) method overload and specifying -1 (or Timeout.Infinite) for millisecondsTimeoutand true for exitContext.
The following code example shows how to use the thread pool to asynchronously create and write to a group of files. Each write operation is queued as a work item and signals when it is finished. The main thread waits for all the items to signal and then exits.
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
