ComAwareEventInfo.GetRemoveMethod(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, retrieves the MethodInfo object for removing a method of the event.
public:
override System::Reflection::MethodInfo ^ GetRemoveMethod(bool nonPublic);
public override System.Reflection.MethodInfo? GetRemoveMethod (bool nonPublic);
public override System.Reflection.MethodInfo GetRemoveMethod (bool nonPublic);
override this.GetRemoveMethod : bool -> System.Reflection.MethodInfo
Public Overrides Function GetRemoveMethod (nonPublic As Boolean) As MethodInfo
Parameters
- nonPublic
- Boolean
true
to return non-public methods; otherwise, false
.
Returns
The method that was used to remove an event handler delegate from the event source.
Exceptions
nonPublic
is true
and the method used to add an event handler delegate is non-public, but the caller does not have permission to reflect on non-public methods.