This documentation is archived and is not being maintained.
Monitor::Wait Method
Visual Studio 2010
Releases the lock on an object and blocks the current thread until it reacquires the lock.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
Wait(Object) | Releases the lock on an object and blocks the current thread until it reacquires the lock. |
|
Wait(Object, Int32) | Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. |
|
Wait(Object, TimeSpan) | Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. |
|
Wait(Object, Int32, Boolean) | Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. This method also specifies whether the synchronization domain for the context (if in a synchronized context) is exited before the wait and reacquired afterward. |
|
Wait(Object, TimeSpan, Boolean) | Releases the lock on an object and blocks the current thread until it reacquires the lock. If the specified time-out interval elapses, the thread enters the ready queue. Optionally exits the synchronization domain for the synchronized context before the wait and reacquires the domain afterward. |
Show: