WeakEventManager.ListenerList<TEventArgs>.DeliverEvent 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.
Delivers the event being managed to each listener in the WeakEventManager.ListenerList<TEventArgs>.
public:
override bool DeliverEvent(System::Object ^ sender, EventArgs ^ e, Type ^ managerType);
public override bool DeliverEvent (object sender, EventArgs e, Type managerType);
override this.DeliverEvent : obj * EventArgs * Type -> bool
Public Overrides Function DeliverEvent (sender As Object, e As EventArgs, managerType As Type) As Boolean
Parameters
- sender
- Object
The object that raised the event.
An object that contains the event data.
- managerType
- Type
The type of the WeakEventManager that calls this method.
Returns
true
if any of the listeners in the WeakEventManager.ListenerList<TEventArgs> refer to an object that has been garbage collected; otherwise, false
.