_Type.GetEvent 方法

定义

为 COM 对象提供对 GetEvent 方法的与版本无关的访问。

重载

GetEvent(String)

为 COM 对象提供对 GetEvent(String) 方法的与版本无关的访问。

GetEvent(String, BindingFlags)

为 COM 对象提供对 GetEvent(String, BindingFlags) 方法的与版本无关的访问。

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

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

参数

name
String

位掩码由一个或多个 BindingFlags 组成,用于指定搜索的执行方式。

-或-

零,返回 null

返回

一个由 EventInfo 对象构成的数组,这些对象表示由与指定绑定约束匹配的当前 Type 声明或继承的所有事件。

-或-

如果当前 Type 没有事件,或者没有任何事件与绑定约束匹配,则为 EventInfo类型的空数组。

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

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

参数

name
String

包含当前 Type声明或继承的事件的名称的 String

bindingAttr
BindingFlags

位掩码由一个或多个 BindingFlags 组成,用于指定搜索的执行方式。

-或-

零,返回 null

返回

表示当前 Type声明或继承的指定事件的 EventInfo 对象(如果找到);否则,null

注解

此方法用于从非托管代码访问托管类,不应从托管代码调用。

Type.GetEvent 方法使用指定的绑定约束返回表示指定事件的 EventInfo 对象。

适用于