Table of Contents

Struct ReadLockSlim

Namespace
LfrlAnvil.Async
Assembly
LfrlAnvil.Core.dll

A lightweight, disposable object representing an acquired read lock.

public readonly struct ReadLockSlim : IDisposable
Implements
Inherited Members
Extension Methods

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public void Dispose()

Remarks

Releases previously acquired read lock.

Exceptions

SynchronizationLockException

Attempt to release a read lock has thrown an exception of this type. See ExitReadLock() for more information.

Enter(ReaderWriterLockSlim)

Acquires a read lock on the provided ReaderWriterLockSlim instance.

public static ReadLockSlim Enter(ReaderWriterLockSlim @lock)

Parameters

lock ReaderWriterLockSlim

A reader/writer lock object on which to acquire the read lock.

Returns

ReadLockSlim

A disposable ReadLockSlim instance.

Exceptions

ObjectDisposedException

The lock has been disposed.

LockRecursionException

Attempt to acquire a read lock has thrown an exception of this type. See EnterReadLock() for more information.

TryEnter(ReaderWriterLockSlim, out bool)

Attempts to acquire a read lock on the provided ReaderWriterLockSlim instance. If the lock has been disposed, then the read lock will not be acquired.

public static ReadLockSlim TryEnter(ReaderWriterLockSlim @lock, out bool entered)

Parameters

lock ReaderWriterLockSlim

A reader/writer lock object on which to acquire the read lock.

entered bool

An out parameter set to true when read lock has been acquired, otherwise false.

Returns

ReadLockSlim

A disposable ReadLockSlim instance. Read lock will not be acquired if lock has been disposed.

Exceptions

LockRecursionException

Attempt to acquire a read lock has thrown an exception of this type. See EnterReadLock() for more information.