Monitor::Wait Method
Releases the lock on an object and blocks the current thread until it reacquires the lock.
Assembly: mscorlib (in mscorlib.dll)
| 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^, 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) | 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, 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. |

