System.Reflection.EventInfo.GetRaiseMethod Method

When overridden in a derived class, returns the method that is called when the event is raised, specifying whether to return non-public methods.

Syntax

public abstract MethodInfo GetRaiseMethod (bool nonPublic)

Parameters

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

Returns

A MethodInfo object that was called when the event was raised.

Exceptions

TypeReason
MethodAccessException nonPublic is true, the method used to raise the event is non-public, and the caller does not have permission to reflect on non-public methods.

Remarks

This method usually returns null for events 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 by default.

Permissions

TypeReason
System.Security.Permissions.ReflectionPermissionRequires permission to reflect non-public members of a type in loaded assemblies. See System.Security.Permissions.ReflectionPermissionFlag.TypeInformation.

Requirements

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0