SemaphoreSlim.AvailableWaitHandle Property
Returns a WaitHandle that can be used to wait on the semaphore.
Namespace: System.Threading
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Threading.WaitHandleA WaitHandle that can be used to wait on the semaphore.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The SemaphoreSlim has been disposed. |
Use this property only when you must wait on a SemaphoreSlim together with other kernel-based synchronization objects with the same wait handle. A successful wait on the AvailableWaitHandle does not imply a successful wait on the SemaphoreSlim itself, nor does it decrement the semaphore's count. After the available wait handle is signaled, you should wait on the SemaphoreSlim specifically.
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.