WaitHandle.WaitAny Method (WaitHandle[])
Waits for any of the elements in the specified array to receive a signal.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Parameters
- waitHandles
- Type: System.Threading.WaitHandle[]
A WaitHandle array containing the objects for which the current instance will wait.
| Exception | Condition |
|---|---|
| ArgumentNullException | The waitHandles parameter is a null reference (Nothing in Visual Basic). -or- One or more of the objects in the waitHandles array is a null reference (Nothing in Visual Basic). |
| NotSupportedException | The number of objects in waitHandles is greater than the system permits. |
| ApplicationException | waitHandles is an array with no elements, and the .NET Framework version is 1.0 or 1.1. |
| AbandonedMutexException | The wait completed because a thread exited without releasing a mutex. This exception is not thrown on Windows 98 or Windows Millennium Edition. |
| ArgumentException | waitHandles is an array with no elements, and the .NET Framework version is 2.0 or later. |
| 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 WaitAny method returns true if the wait completes because 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 WaitAny method throws an AbandonedMutexException only when the wait completes because of an abandoned mutex. If waitHandles contains a released mutex with a lower index number than the abandoned mutex, the WaitAny method completes normally and the exception is not thrown.
Note |
|---|
In versions of the .NET Framework earlier than version 2.0, if a thread exits or aborts without explicitly releasing a Mutex, and that Mutex is at index 0 (zero) in a WaitAny array on another thread, the index returned by WaitAny is 128 instead of 0. |
This method returns when any handle is signaled. If more than one object becomes signaled during the call, the return value is the array index of the signaled object with the smallest index value of all the signaled objects. On some implementations, if more that 64 handles are passed, a NotSupportedException is thrown.
Calling this method overload is equivalent to calling the WaitAny(WaitHandle[], Int32, Boolean) method overload and specifying -1 (or Timeout.Infinite) for millisecondsTimeout and true for exitContext.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note