EnumBuilder.GetMethods(BindingFlags) 方法

定义

按照指定,返回此类型声明或继承的所有公共和非公共方法。

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

参数

bindingAttr
BindingFlags

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

返回

如果使用 nonPublic,则返回 MethodInfo 对象数组,表示在该类型上定义的公共和非公共方法;否则,仅返回公共方法。

例外

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

注解

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

适用于