Mono Class Library: Overview

System.Reflection.EventInfo: Method Members

The methods of System.Reflection.EventInfo are listed below. For a list of all members, see the EventInfo Members list.

See Also: Inherited members from System.Reflection.MemberInfo

Public Methods

AddEventHandler(object, Delegate)
Adds the specified event handler delegate to the specified event source.
GetAddMethod() : MethodInfo
Returns the public method used to add an event handler delegate to an event source for the event reflected by the current instance.
abstract
GetAddMethod(bool) : MethodInfo
Returns the method used to add an event handler delegate to an event source for the event reflected by the current instance, specifying whether or not to return non-public methods.
GetOtherMethods() : MethodInfo[]
Documentation for this section has not yet been entered.
GetOtherMethods(bool) : MethodInfo[]
Documentation for this section has not yet been entered.
GetRaiseMethod() : MethodInfo
Returns the public method that is called when the event reflected by the current instance is raised.
abstract
GetRaiseMethod(bool) : MethodInfo
Returns the method that is called when the event reflected by the current instance is raised, specifying whether the method to be returned is public or non-public.
GetRemoveMethod() : MethodInfo
Returns the public method used to remove an event-handler delegate from the event reflected by the current instance.
abstract
GetRemoveMethod(bool) : MethodInfo
Returns the method used to remove an event-handler delegate from the event reflected by the current instance, specifying whether or not to return non-public methods.
GetType() : Type
Documentation for this section has not yet been entered.
RemoveEventHandler(object, Delegate)
Removes the specified event handler delegate from the specified event source.