_EventInfo.GetRaiseMethod Method

Definition

Provides COM objects with version-independent access to the GetRaiseMethod methods.

Overloads

GetRaiseMethod()

Provides COM objects with version-independent access to the GetRaiseMethod() method.

GetRaiseMethod(Boolean)

Provides COM objects with version-independent access to the GetRaiseMethod(Boolean) method.

Remarks

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The GetRaiseMethod methods return the method that is called when the event is raised.

GetRaiseMethod()

Provides COM objects with version-independent access to the GetRaiseMethod() method.

public:
 System::Reflection::MethodInfo ^ GetRaiseMethod();
public System.Reflection.MethodInfo GetRaiseMethod ();
abstract member GetRaiseMethod : unit -> System.Reflection.MethodInfo
Public Function GetRaiseMethod () As MethodInfo

Returns

The method that is called when the event is raised.

Remarks

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The GetRaiseMethod method returns the method that is called when the event is raised.

Applies to

GetRaiseMethod(Boolean)

Provides COM objects with version-independent access to the GetRaiseMethod(Boolean) method.

public:
 System::Reflection::MethodInfo ^ GetRaiseMethod(bool nonPublic);
public System.Reflection.MethodInfo GetRaiseMethod (bool nonPublic);
abstract member GetRaiseMethod : bool -> System.Reflection.MethodInfo
Public Function GetRaiseMethod (nonPublic As Boolean) As MethodInfo

Parameters

nonPublic
Boolean

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

Returns

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

Remarks

This method is for access to managed classes from unmanaged code and should not be called from managed code.

The GetRaiseMethod method returns the method that is called when the event is raised and specifies whether to return non-public methods.

Applies to