Struct ExclusiveLock
A lightweight, disposable object representing an acquired monitor lock.
public readonly struct ExclusiveLock : 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 monitor lock.
Enter(object)
Acquires an exclusive lock and creates a new ExclusiveLock.
public static ExclusiveLock Enter(object sync)
Parameters
sync
objectAn object on which to acquire the monitor lock.
Returns
- ExclusiveLock
A disposable ExclusiveLock instance.