See Also: EventDescriptor Members
An System.ComponentModel.EventDescriptor consists of a name, its attributes, the component that the event is bound to, the event delegate, the type of delegate, and whether the delegate is multicast.
System.ComponentModel.EventDescriptor provides the following abstract properties and methods:
EventDescriptor.ComponentType contains the type of the component this event is declared on.
EventDescriptor.EventType contains the type of delegate for the event.
EventDescriptor.IsMulticast contains a value indicating whether the event delegate is a multicast delegate.
EventDescriptor.AddEventHandler(object, Delegate) binds the event to a component.
EventDescriptor.RemoveEventHandler(object, Delegate) unbinds the delegate from the component so that the delegate no longer receives events from the component.
For more information about events, see Raising an Event. For more information about reflection, see the topics in Reflection.