Click or drag to resize
EventInfoGetAddMethod Method (Boolean)
When overridden in a derived class, retrieves the MethodInfo object for the AddEventHandler(Object, Delegate) method of the event, specifying whether to return non-public methods.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public abstract MethodInfo GetAddMethod(
	bool nonPublic
)

Parameters

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

Return Value

Type: MethodInfo
A MethodInfo object representing the method used to add an event handler delegate to the event source.
Exceptions
ExceptionCondition
MethodAccessExceptionnonPublic 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.
See Also