Stream.CreateWaitHandle Method ()
.NET Framework (current version)
Allocates a WaitHandle object.
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute("CreateWaitHandle will be removed eventually. Please use \"new ManualResetEvent(false)\" instead.")] protected virtual WaitHandle CreateWaitHandle()
When called for the first time, the current method creates a WaitHandle object and returns it. On subsequent calls, CreateWaitHandle returns a reference to a new wait handle.
Use this method if you implement the asynchronous methods and require a way of blocking in EndRead or EndWrite until the asynchronous operation is complete.
.NET Framework
Available since 1.1
Available since 1.1
Show: