EnumBuilder.GetEvents 方法

定义

未完成的类型上不支持此方法。

重载

GetEvents()

返回此类型声明或继承的公共事件的事件。

GetEvents(BindingFlags)

返回此类型声明的公共和非公共事件。

GetEvents()

Source:
EnumBuilder.cs

返回此类型声明或继承的公共事件的事件。

public:
 override cli::array <System::Reflection::EventInfo ^> ^ GetEvents();
public override System.Reflection.EventInfo[] GetEvents ();
override this.GetEvents : unit -> System.Reflection.EventInfo[]
Public Overrides Function GetEvents () As EventInfo()

返回

返回表示此类型声明或继承的公共事件的 EventInfo 对象数组。 如果没有任何公共事件,则返回一个空数组。

例外

不完整类型目前不支持此方法。

注解

解决方法是,若要检索已完成类型的事件,请使用 Type.GetTypeAssembly.GetType 检索类型,并在检索的类型上使用反射。

适用于

GetEvents(BindingFlags)

Source:
EnumBuilder.cs

返回此类型声明的公共和非公共事件。

public:
 override cli::array <System::Reflection::EventInfo ^> ^ GetEvents(System::Reflection::BindingFlags bindingAttr);
public override System.Reflection.EventInfo[] GetEvents (System.Reflection.BindingFlags bindingAttr);
override this.GetEvents : System.Reflection.BindingFlags -> System.Reflection.EventInfo[]
Public Overrides Function GetEvents (bindingAttr As BindingFlags) As EventInfo()

参数

bindingAttr
BindingFlags

这必须是来自 BindingFlags 的位标志,例如 InvokeMethodNonPublic 等等。

返回

返回 EventInfo 对象数组,表示此类型声明或继承的公共和非公共事件。 按照指定,如果没有事件,则返回空数组。

例外

不完整类型目前不支持此方法。

注解

解决方法是,若要检索已完成类型的事件,请使用 Type.GetTypeAssembly.GetType 检索类型,并使用检索到的类型上的反射来检索事件。

适用于