RoutedEventArgs::InvokeEventHandler Method (Delegate^, Object^)

 

When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation.

Namespace:   System.Windows
Assembly:  PresentationCore (in PresentationCore.dll)

protected:
virtual void InvokeEventHandler(
	Delegate^ genericHandler,
	Object^ genericTarget
)

Parameters

genericHandler
Type: System::Delegate^

The generic handler / delegate implementation to be invoked.

genericTarget
Type: System::Object^

The target on which the provided handler should be invoked.

The base implementation incorporates reflection to determine the right handler for any case where the handler is not literally RoutedEventHandler, and this reflection step does have some performance consequences. Invocations can be made more efficient by not relying on reflection. This is the scenario that motivates this method being available for any routed event arguments class that choose to override it. Implementations should not call the base for this method, because your implementation should already be responsible for invoking the type safe handlers.

Notes to Inheritors:

This method is intended to be overridden by derived event data classes to provide more efficient invocation of their delegates. The implementation should cast the provided genericHandler to the type-specific delegate, and then invoke that handler.

The default implementation will attempt to invoke the provided handler, attempting to cast it as RoutedEventHandler. If either genericHandler or genericTarget is provided as null, exceptions will be raised.

The following is pseudocode that illustrates a basic pattern that can be used for implementation. Here, MyRoutedEventHandler is a subclass of RoutedEventHandler.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: