TypeBuilder.GetEvent(String, BindingFlags) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回具有指定名称的事件。
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.GetType 或 Assembly.GetType 检索类型,并在检索的类型上使用反射。