TypeBuilder.GetEvent(String, BindingFlags) 方法

定义

返回具有指定名称的事件。

public:
 override System::Reflection::EventInfo ^ GetEvent(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.EventInfo? GetEvent (string name, System.Reflection.BindingFlags bindingAttr);
public override System.Reflection.EventInfo GetEvent (string name, System.Reflection.BindingFlags bindingAttr);
override this.GetEvent : string * System.Reflection.BindingFlags -> System.Reflection.EventInfo
Public Overrides Function GetEvent (name As String, bindingAttr As BindingFlags) As EventInfo

参数

name
String

要搜索的事件的名称。

bindingAttr
BindingFlags

用于限制搜索的 BindingFlags 值的按位组合。

返回

一个 EventInfo 对象,表示这个指定名称的类型声明或继承的事件;如果没有匹配项,则为 null

例外

不会为不完整类型实现此方法。

注解

使用 Type.GetTypeAssembly.GetType 检索类型,并在检索的类型上使用反射。

适用于