EnumBuilder.GetMethodImpl 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,使用指定的绑定约束和指定的调用约定搜索其参数与指定参数类型和修饰符匹配的指定方法。
protected:
override System::Reflection::MethodInfo ^ GetMethodImpl(System::String ^ name, System::Reflection::BindingFlags bindingAttr, System::Reflection::Binder ^ binder, System::Reflection::CallingConventions callConvention, cli::array <Type ^> ^ types, cli::array <System::Reflection::ParameterModifier> ^ modifiers);
protected override System.Reflection.MethodInfo? GetMethodImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, System.Reflection.CallingConventions callConvention, Type[]? types, System.Reflection.ParameterModifier[]? modifiers);
protected override System.Reflection.MethodInfo GetMethodImpl (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, Type[] types, System.Reflection.ParameterModifier[] modifiers);
override this.GetMethodImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * System.Reflection.CallingConventions * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.MethodInfo
Protected Overrides Function GetMethodImpl (name As String, bindingAttr As BindingFlags, binder As Binder, callConvention As CallingConventions, types As Type(), modifiers As ParameterModifier()) As MethodInfo
参数
- name
- String
包含要获取的方法的名称的字符串。
- binder
- Binder
一个对象,定义一组属性并启用绑定,这可能涉及选择重载的方法、强制参数类型以及通过反射调用成员。
-或-
使用 DefaultBinder的 null
引用(在 Visual Basic 中Nothing
)。
- callConvention
- CallingConventions
该对象指定要用于参数的顺序和布局的规则集、传递返回值的方式、用于参数的寄存器以及清理堆栈的过程。
- types
- Type[]
一个由 Type 对象构成的数组,表示要获取的方法的参数的数量、顺序和类型。
-或-
类型为空数组 Type(即 Type[] types = new Type[0]),以获取不带参数的方法。
-或-
null
。 如果 types
null
,则参数不匹配。
- modifiers
- ParameterModifier[]
表示与 types
数组中相应元素关联的属性的 ParameterModifier 对象的数组。 默认绑定器不处理此参数。
返回
一个对象,表示符合指定要求的方法(如果找到);否则,null
。