_Type.GetEvent 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
為 COM 物件提供與版本無關的 GetEvent 方法之存取權。
多載
GetEvent(String) |
為 COM 物件提供與版本無關的 GetEvent(String) 方法之存取權。 |
GetEvent(String, BindingFlags) |
為 COM 物件提供與版本無關的 GetEvent(String, BindingFlags) 方法之存取權。 |
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法 Type.GetEvent 會取得目前 Type所宣告或繼承的特定事件。
GetEvent(String)
為 COM 物件提供與版本無關的 GetEvent(String) 方法之存取權。
public:
System::Reflection::EventInfo ^ GetEvent(System::String ^ name);
public System.Reflection.EventInfo GetEvent (string name);
abstract member GetEvent : string -> System.Reflection.EventInfo
Public Function GetEvent (name As String) As EventInfo
參數
傳回
EventInfo 物件的陣列,代表目前 Type 所宣告或繼承之符合指定繫結條件約束的所有事件。
-或-
如果目前 EventInfo 沒有事件,或沒有事件符合繫結條件約束,則為 Type 類型的空陣列。
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法會 Type.GetEvent 使用指定的系結條件約束,搜尋目前 Type所宣告或繼承的事件。
適用於
GetEvent(String, BindingFlags)
為 COM 物件提供與版本無關的 GetEvent(String, BindingFlags) 方法之存取權。
public:
System::Reflection::EventInfo ^ GetEvent(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public System.Reflection.EventInfo GetEvent (string name, System.Reflection.BindingFlags bindingAttr);
abstract member GetEvent : string * System.Reflection.BindingFlags -> System.Reflection.EventInfo
Public Function GetEvent (name As String, bindingAttr As BindingFlags) As EventInfo
參數
傳回
EventInfo 物件,表示由目前 Type 所宣告或繼承的指定事件 (如有找到);否則為 null
。
備註
此方法適用於從 Unmanaged 程式代碼存取 Managed 類別,不應從 Managed 程式代碼呼叫。
方法會Type.GetEventEventInfo使用指定的系結條件約束,傳回代表指定事件的物件。