Struct WriteLockSlim
A lightweight, disposable object representing an acquired write lock.
public readonly struct WriteLockSlim : 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 write lock.
Exceptions
- SynchronizationLockException
Attempt to release a write lock has thrown an exception of this type. See ExitWriteLock() for more information.
Enter(ReaderWriterLockSlim)
Acquires a write lock on the provided ReaderWriterLockSlim instance.
public static WriteLockSlim Enter(ReaderWriterLockSlim @lock)
Parameters
lock
ReaderWriterLockSlimA reader/writer lock object on which to acquire the write lock.
Returns
- WriteLockSlim
A disposable WriteLockSlim instance.
Exceptions
- ObjectDisposedException
The
lock
has been disposed.- LockRecursionException
Attempt to acquire a write lock has thrown an exception of this type. See EnterWriteLock() for more information.
TryEnter(ReaderWriterLockSlim, out bool)
Attempts to acquire a write lock on the provided ReaderWriterLockSlim instance.
If the lock
has been disposed, then the write lock will not be acquired.
public static WriteLockSlim TryEnter(ReaderWriterLockSlim @lock, out bool entered)
Parameters
lock
ReaderWriterLockSlimA reader/writer lock object on which to acquire the write lock.
entered
boolAn out parameter set to true when write lock has been acquired, otherwise false.
Returns
- WriteLockSlim
A disposable WriteLockSlim instance. Write lock will not be acquired if
lock
has been disposed.
Exceptions
- LockRecursionException
Attempt to acquire a write lock has thrown an exception of this type. See EnterWriteLock() for more information.