ReaderWriterLockSlimUtility.AcquireWriteLock method

Enters a write lock and returns a disposable object that, when disposed, will exit the lock.

public static IDisposable AcquireWriteLock(this ReaderWriterLockSlim theLock)
parameter description
theLock The lock on which the write lock should be entered.

Return Value

A disposable object that, when disposed, will exit the lock.

See Also