WeakEventManager.ListenerList.BeginUse 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.
Declares the list to be in use. This prevents direct changes to the list during iterations of the list items.
public:
bool BeginUse();
public bool BeginUse ();
member this.BeginUse : unit -> bool
Public Function BeginUse () As Boolean
Returns
true
if the list was already declared to be in use; otherwise, false
.
Remarks
A WeakEventManager implementation should call BeginUse before iterating through the list to deliver an event to the listeners, and should call EndUse when it is done. This prevents another caller from modifying the list while the iteration for purposes of event delivery is in progress. If the list is modified during this time, then the list is cloned. If the list is cloned, then PrepareForWriting returns true
, which means that you have missed a recent listener change in the last delivery.