Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ManualResetEventSlim::Wait Method

.NET Framework (current version)
 

Blocks the current thread until the current ManualResetEventSlim is set.

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

NameDescription
System_CAPS_pubmethodWait()

Blocks the current thread until the current ManualResetEventSlim is set.

System_CAPS_pubmethodWait(CancellationToken)

Blocks the current thread until the current ManualResetEventSlim receives a signal, while observing a CancellationToken.

System_CAPS_pubmethodWait(Int32)

Blocks the current thread until the current ManualResetEventSlim is set, using a 32-bit signed integer to measure the time interval.

System_CAPS_pubmethodWait(Int32, CancellationToken)

Blocks the current thread until the current ManualResetEventSlim is set, using a 32-bit signed integer to measure the time interval, while observing a CancellationToken.

System_CAPS_pubmethodWait(TimeSpan)

Blocks the current thread until the current ManualResetEventSlim is set, using a TimeSpan to measure the time interval.

System_CAPS_pubmethodWait(TimeSpan, CancellationToken)

Blocks the current thread until the current ManualResetEventSlim is set, using a TimeSpan to measure the time interval, while observing a CancellationToken.

Return to top
Show:
© 2017 Microsoft