Blocks the current thread until the current System.Threading.WaitHandle receives a signal, using a 32-bit signed integer to specify the time interval.
- millisecondsTimeout
- The number of milliseconds to wait, or Timeout.Infinite (-1) to wait indefinitely.
true if the current instance receives a signal; otherwise, false.
If millisecondsTimeout is zero, the method does not block. It tests the state of the wait handle and returns immediately.
The caller of this method blocks until the current instance receives a signal or a time-out occurs. Use this method to block until a System.Threading.WaitHandle receives a signal from another thread, such as is generated when an asynchronous operation completes. For more information, see the IAsyncResult interface.
Override this method to customize the behavior of derived classes.
Calling this method overload is the same as calling the WaitHandle.WaitOne(int, bool) overload and specifying false for exitContext.