SemaphoreSlim.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 it can enter the SemaphoreSlim, while observing a CancellationToken.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- cancellationToken
- Type: System.Threading.CancellationToken
The CancellationToken token to observe.
| Exception | Condition |
|---|---|
| OperationCanceledException | cancellationToken was canceled. |
| ObjectDisposedException | The current instance has already been disposed. -or- The CancellationTokenSource that created cancellationToken has already been disposed. |
Show: