SemaphoreSlim.AvailableWaitHandle Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a WaitHandle that can be used to wait on the semaphore.
public:
 property System::Threading::WaitHandle ^ AvailableWaitHandle { System::Threading::WaitHandle ^ get(); };public System.Threading.WaitHandle AvailableWaitHandle { get; }member this.AvailableWaitHandle : System.Threading.WaitHandlePublic ReadOnly Property AvailableWaitHandle As WaitHandleProperty Value
A WaitHandle that can be used to wait on the semaphore.
Exceptions
The SemaphoreSlim has been disposed.
Remarks
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.