TypeDelegator.GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[]) Метод
Определение
Ищет метод с параметрами, соответствующими указанным модификаторам и типам аргументов, с учетом заданных ограничений привязки и соглашений о вызовах.Searches for the specified method whose parameters match the specified argument types and modifiers, using the specified binding constraints and the specified calling convention.
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);
override this.GetMethodImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * System.Reflection.CallingConventions * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.MethodInfo
Параметры
- name
- String
Имя метода.The method name.
- bindingAttr
- BindingFlags
Битовая маска, влияющая на способ выполнения поиска.A bitmask that affects the way in which the search is conducted. Значение является сочетанием битовых флагов из перечисления BindingFlags.The value is a combination of zero or more bit flags from BindingFlags.
- binder
- Binder
Объект, позволяющий осуществлять привязку, приведение типов аргументов, вызов элементов, а также поиск объектов MemberInfo
с помощью отражения.An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo
objects using reflection. Если значение параметра binder
равно null
, используется связыватель по умолчанию.If binder
is null
, the default binder is used.
- callConvention
- CallingConventions
Соглашения о вызовах.The calling conventions.
- types
- Type[]
Массив объектов типа Type
, содержащий число, порядок и типы параметров.An array of type Type
containing a list of the parameter number, order, and types. Типы не могут иметь значение null
; для поиска метода без параметров следует использовать соответствующий метод GetMethod
или пустой массив.Types cannot be null
; use an appropriate GetMethod
method or an empty array to search for a method without parameters.
- modifiers
- ParameterModifier[]
Массив типа ParameterModifier
, имеющий такую же длину, как и массив types
, элементы которого представляют атрибуты, соответствующие параметрам получаемого метода.An array of type ParameterModifier
having the same length as the types
array, whose elements represent the attributes associated with the parameters of the method to get.
Возвраты
Объект MethodInfoInfo
для реализации метода, который соответствует заданным критериям, или значение null
, если совпадение не найдено.A MethodInfoInfo
object for the implementation method that matches the specified criteria, or null
if a match cannot be found.
Комментарии
callConvention
Параметр указывает соглашение о вызовах для точки входа.The callConvention
parameter indicates the calling convention for the entry point. Если параметр CallingConventions не указан, используется значение CallingConventions
Standard
по умолчанию.If no CallingConventions is specified, a default CallingConventions
value of Standard
is used.