WeakEventManager.WriteLock Property

Definition

Establishes a write-lock on the underlying data table, and returns an IDisposable.

protected IDisposable WriteLock { get; }

Property Value

An object that can be used to establish a lock on the data table members and then be appropriately disposed with a using construct.

Remarks

In derived classes, all modifications to the underlying data table should occur within a using (WriteLock) { ... } clause. These modifications may be necessary if your class supports a more sophisticated AddListener implementation that requires more data beyond the source and the listener, and uses the Item[] collection to store the extra information.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also