ManualResetEventSlim::Wait Method (CancellationToken)
.NET Framework (current version)
Blocks the current thread until the current ManualResetEventSlim receives a signal, while observing a CancellationToken.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- cancellationToken
-
Type:
System.Threading::CancellationToken
The CancellationToken to observe.
| Exception | Condition |
|---|---|
| InvalidOperationException | The maximum number of waiters has been exceeded. |
| OperationCanceledException | cancellationToken was canceled. |
| ObjectDisposedException | The object has already been disposed or the CancellationTokenSource that created cancellationToken has been disposed. |
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.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Show: