共用方式為


_EventInfo.GetAddMethod 方法

定義

為 COM 物件提供與版本無關的 GetAddMethod 方法之存取權。

多載

GetAddMethod()

為 COM 物件提供與版本無關的 GetAddMethod() 方法之存取權。

GetAddMethod(Boolean)

為 COM 物件提供與版本無關的 GetAddMethod(Boolean) 方法之存取權。

備註

這個方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。

方法會 GetAddMethod 傳回方法,用來將事件處理程式委派新增至事件來源。

GetAddMethod()

為 COM 物件提供與版本無關的 GetAddMethod() 方法之存取權。

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

傳回

MethodInfo 物件,表示用來將事件處理常式委派加入事件來源的方法。

備註

這個方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。

方法 GetAddMethod 會傳回方法,用來將事件處理程式委派新增至事件來源。

適用於

GetAddMethod(Boolean)

為 COM 物件提供與版本無關的 GetAddMethod(Boolean) 方法之存取權。

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

參數

nonPublic
Boolean

true 是表示要傳回非公用方法,否則為 false

傳回

MethodInfo 物件,表示用來將事件處理常式委派加入事件來源的方法。

備註

這個方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。

方法 GetAddMethodMethodInfoAddEventHandler 取 事件方法的物件,並指定是否要傳回非公用方法

適用於