AsyncSemaphore.EnterAsync Method (CancellationToken)

Requests access to the lock.

Namespace:  Microsoft.VisualStudio.Threading
Assembly:  Microsoft.VisualStudio.Threading (in Microsoft.VisualStudio.Threading.dll)

Syntax

'Declaration
Public Function EnterAsync ( _
    cancellationToken As CancellationToken _
) As Task(Of AsyncSemaphore.Releaser)
public Task<AsyncSemaphore.Releaser> EnterAsync(
    CancellationToken cancellationToken
)
public:
Task<AsyncSemaphore::Releaser>^ EnterAsync(
    CancellationToken cancellationToken
)
member EnterAsync : 
        cancellationToken:CancellationToken -> Task<AsyncSemaphore.Releaser> 
public function EnterAsync(
    cancellationToken : CancellationToken
) : Task<AsyncSemaphore.Releaser>

Parameters

Return Value

Type: System.Threading.Tasks.Task<AsyncSemaphore.Releaser>
A Task<TResult> whose result is a releaser that should be disposed to release the lock.

.NET Framework Security

See Also

Reference

AsyncSemaphore Class

EnterAsync Overload

Microsoft.VisualStudio.Threading Namespace