Share via


AsyncReaderWriterLock.WriteLockAsync Method (CancellationToken)

Microsoft internal only. Gets a write lock, asynchronously awaiting for the lock if it is not immediately available.

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

Syntax

'Declaration
Public Function WriteLockAsync ( _
    cancellationToken As CancellationToken _
) As AsyncReaderWriterLock.Awaitable
public AsyncReaderWriterLock.Awaitable WriteLockAsync(
    CancellationToken cancellationToken
)
public:
AsyncReaderWriterLock::Awaitable WriteLockAsync(
    CancellationToken cancellationToken
)
member WriteLockAsync : 
        cancellationToken:CancellationToken -> AsyncReaderWriterLock.Awaitable
public function WriteLockAsync(
    cancellationToken : CancellationToken
) : AsyncReaderWriterLock.Awaitable

Parameters

  • cancellationToken
    Type: System.Threading.CancellationToken

    A token whose cancelation indicates lost interest in obtaining the lock. A canceled token does not release a lock that has already been issued. If the lock isn't immediately available, a canceled token causes the code that is waiting for the lock to resume with an OperationCanceledException.

Return Value

Type: Microsoft.VisualStudio.Threading.AsyncReaderWriterLock.Awaitable
An AsyncReaderWriterLock.Awaitable whose result is the lock releaser.

.NET Framework Security

See Also

Reference

AsyncReaderWriterLock Class

WriteLockAsync Overload

Microsoft.VisualStudio.Threading Namespace