WeakEventManager.DeliverEventToList Method

Definition

Delivers the event being managed to each listener in the provided list.

protected:
 void DeliverEventToList(System::Object ^ sender, EventArgs ^ args, System::Windows::WeakEventManager::ListenerList ^ list);
protected void DeliverEventToList (object sender, EventArgs args, System.Windows.WeakEventManager.ListenerList list);
member this.DeliverEventToList : obj * EventArgs * System.Windows.WeakEventManager.ListenerList -> unit
Protected Sub DeliverEventToList (sender As Object, args As EventArgs, list As WeakEventManager.ListenerList)

Parameters

sender
Object

The object on which the event is being handled.

args
EventArgs

An EventArgs that contains the event data.

Remarks

This method is necessary if your manager implementation maintains separate listeners lists based on information that is captured in the event data. If you use this advanced technique, you must create and maintain the separate lists as part of your manager implementation, and you must provide a way to add listeners to a specific list. Your handler implementation that listens to the raw event must act upon the condition that you use to differentiate the lists, and deliver the event only to the appropriate list or lists.

Applies to

See also