CountdownEvent.Wait Method (CancellationToken)
[ 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 CountdownEvent is set, while observing a CancellationToken.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- cancellationToken
- Type: System.Threading.CancellationToken
The CancellationToken to observe.
| Exception | Condition |
|---|---|
| OperationCanceledException | cancellationToken has been canceled. |
| ObjectDisposedException | The current instance has already been disposed. -or- The CancellationTokenSource that created cancellationToken has already 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. If the CancellationToken being observed is canceled during the wait operation, an OperationCanceledException will be thrown.