ComAwareEventInfo.GetRaiseMethod(Boolean) Method

Definition

When overridden in a derived class, returns the method that was called when the event was raised.

public:
 override System::Reflection::MethodInfo ^ GetRaiseMethod(bool nonPublic);
public override System.Reflection.MethodInfo? GetRaiseMethod (bool nonPublic);
public override System.Reflection.MethodInfo GetRaiseMethod (bool nonPublic);
override this.GetRaiseMethod : bool -> System.Reflection.MethodInfo
Public Overrides Function GetRaiseMethod (nonPublic As Boolean) As MethodInfo

Parameters

nonPublic
Boolean

true to return non-public methods; otherwise, false.

Returns

The object that was called when the event was raised.

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.

Remarks

This method returns null for events that are declared with the C# event keyword or the Visual Basic Event keyword. This is because the C# and Visual Basic compilers do not generate such a method.

Applies to