VirtualTypeImplementor.AddEventHandler Method

Adds the given delegate to the given event.

Namespace:  Microsoft.VisualStudio.Shell.Design
Assembly:  Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)

Syntax

'Declaration
Public Overridable Sub AddEventHandler ( _
    eventInfo As EventInfo, _
    instance As Object, _
    handler As Delegate _
)
public virtual void AddEventHandler(
    EventInfo eventInfo,
    Object instance,
    Delegate handler
)
public:
virtual void AddEventHandler(
    EventInfo^ eventInfo, 
    Object^ instance, 
    Delegate^ handler
)
abstract AddEventHandler : 
        eventInfo:EventInfo * 
        instance:Object * 
        handler:Delegate -> unit  
override AddEventHandler : 
        eventInfo:EventInfo * 
        instance:Object * 
        handler:Delegate -> unit
public function AddEventHandler(
    eventInfo : EventInfo, 
    instance : Object, 
    handler : Delegate
)

Parameters

  • eventInfo
    Type: EventInfo

    The event to add the handler to.

  • instance
    Type: Object

    The instance on which to add the event handler. This may be nulla null reference (Nothing in Visual Basic) if the event is static.

  • handler
    Type: Delegate

    The event handler to add.

Exceptions

Exception Condition
NotImplementedException

If non-abstract derived class did not provide an implementation by overriding this method.

Remarks

This method attempts to add a delegate to synchronize the event on the target object. Each time the event is raised by the instance parameter, the method or methods encapsulated by the handler will be invoked.

.NET Framework Security

See Also

Reference

VirtualTypeImplementor Class

Microsoft.VisualStudio.Shell.Design Namespace

VirtualTypeImplementor