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.

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

Syntax

Public Sub Wait ( _
    cancellationToken As CancellationToken _
)
public void Wait(
    CancellationToken cancellationToken
)

Parameters

Exceptions

Exception Condition
OperationCanceledException

cancellationToken was canceled.

ObjectDisposedException

The current instance has already been disposed.

-or-

The CancellationTokenSource that created cancellationToken has already been disposed.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

SemaphoreSlim Class

Wait Overload

System.Threading Namespace