AsyncReaderWriterLock.OnExclusiveLockReleasedAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invoked after an exclusive lock is released but before anyone has a chance to enter the lock.
protected:
virtual System::Threading::Tasks::Task ^ OnExclusiveLockReleasedAsync();
protected virtual System.Threading.Tasks.Task OnExclusiveLockReleasedAsync ();
abstract member OnExclusiveLockReleasedAsync : unit -> System.Threading.Tasks.Task
override this.OnExclusiveLockReleasedAsync : unit -> System.Threading.Tasks.Task
Protected Overridable Function OnExclusiveLockReleasedAsync () As Task
Returns
Returns Task.
Remarks
This method is called while holding a private lock in order to block future lock consumers till this method is finished.