EventInfo.GetRemoveMethod Method

Definition

Returns the method used to remove an event handler delegate from the event source.

Overloads

GetRemoveMethod(Boolean)

When overridden in a derived class, retrieves the MethodInfo object for removing a method of the event, specifying whether to return non-public methods.

GetRemoveMethod()

Returns the method used to remove an event handler delegate from the event source.

GetRemoveMethod(Boolean)

When overridden in a derived class, retrieves the MethodInfo object for removing a method of the event, specifying whether to return non-public methods.

public:
 abstract System::Reflection::MethodInfo ^ GetRemoveMethod(bool nonPublic);
public abstract System.Reflection.MethodInfo? GetRemoveMethod (bool nonPublic);
public abstract System.Reflection.MethodInfo GetRemoveMethod (bool nonPublic);
abstract member GetRemoveMethod : bool -> System.Reflection.MethodInfo
Public MustOverride Function GetRemoveMethod (nonPublic As Boolean) As MethodInfo

Parameters

nonPublic
Boolean

true if non-public methods can be returned; otherwise, false.

Returns

A MethodInfo object representing the method used to remove an event handler delegate from the event source.

Implements

Exceptions

nonPublic is true, the method used to add an event handler delegate is non-public, and the caller does not have permission to reflect on non-public methods.

Examples

Typically, the method has the following signature:

remove_<EventName>(<EventHandlerType> handler)

See also

Applies to

GetRemoveMethod()

Returns the method used to remove an event handler delegate from the event source.

public:
 System::Reflection::MethodInfo ^ GetRemoveMethod();
public:
 virtual System::Reflection::MethodInfo ^ GetRemoveMethod();
public System.Reflection.MethodInfo? GetRemoveMethod ();
public System.Reflection.MethodInfo GetRemoveMethod ();
member this.GetRemoveMethod : unit -> System.Reflection.MethodInfo
abstract member GetRemoveMethod : unit -> System.Reflection.MethodInfo
override this.GetRemoveMethod : unit -> System.Reflection.MethodInfo
Public Function GetRemoveMethod () As MethodInfo

Returns

A MethodInfo object representing the method used to remove an event handler delegate from the event source.

Implements

Examples

Typically, the method has the following signature:

remove_<EventName>(<EventHandlerType> handler)

See also

Applies to