.NET Framework Class Library
WaitHandle.WaitOne Method
When overridden in a derived class, blocks the current thread until the current WaitHandle receives a signal.
Overload List
| Name | Description |
|---|---|
| WaitHandle.WaitOne () | When overridden in a derived class, blocks the current thread until the current WaitHandle receives a signal. Supported by the .NET Compact Framework. |
| WaitHandle.WaitOne (Int32, Boolean) | When overridden in a derived class, blocks the current thread until the current WaitHandle receives a signal, using 32-bit signed integer to measure the time interval and specifying whether to exit the synchronization domain before the wait. Supported by the .NET Compact Framework. |
| WaitHandle.WaitOne (TimeSpan, Boolean) | When overridden in a derived class, blocks the current thread until the current instance receives a signal, using a TimeSpan to measure the time interval and specifying whether to exit the synchronization domain before the wait. |
See Also