ManualResetEventSlim.Wait Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Blocks the current thread until the current ManualResetEventSlim is set.

Namespace:  System.Threading
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Sub Wait
public void Wait()

Exceptions

Exception Condition
InvalidOperationException

The maximum number of waiters has been exceeded.

ObjectDisposedException

The object has already been disposed.

Remarks

The caller of this method blocks indefinitely until the current instance is set. The caller will return immediately if the event is currently in a set state.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

ManualResetEventSlim Class

Wait Overload

System.Threading Namespace