ComAwareEventInfo::GetRaiseMethod Method (Boolean)
.NET Framework (current version)
When overridden in a derived class, returns the method that was called when the event was raised.
Assembly: System.Core (in System.Core.dll)
Parameters
- nonPublic
-
Type:
System::Boolean
true to return non-public methods; otherwise, false.
Return Value
Type: System.Reflection::MethodInfo^The object that was called when the event was raised.
Implements
_EventInfo::GetRaiseMethod(Boolean)| Exception | Condition |
|---|---|
| MethodAccessException | 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. |
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.
ReflectionPermission
when invoked late-bound through mechanisms such as Type::InvokeMember. Associated enumeration: ReflectionPermissionFlag::MemberAccess
Show: