Module.GetMethodImpl Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Devolve a implementação do método de acordo com os critérios especificados.
protected:
virtual 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 virtual System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, Type[] types, System.Reflection.ParameterModifier[] modifiers);
abstract member GetMethodImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * System.Reflection.CallingConventions * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.MethodInfo
override this.GetMethodImpl : string * System.Reflection.BindingFlags * System.Reflection.Binder * System.Reflection.CallingConventions * Type[] * System.Reflection.ParameterModifier[] -> System.Reflection.MethodInfo
Protected Overridable Function GetMethodImpl (name As String, bindingAttr As BindingFlags, binder As Binder, callConvention As CallingConventions, types As Type(), modifiers As ParameterModifier()) As MethodInfo
Parâmetros
- name
- String
O nome do método.
- bindingAttr
- BindingFlags
Um dos BindingFlags sinalizadores de bits usados para controlar a pesquisa.
- binder
- Binder
Um objeto que implementa Binder, contendo propriedades relacionadas com este método.
- callConvention
- CallingConventions
A convenção de chamada para o método.
- types
- Type[]
Os tipos de parâmetros a procurar.
- modifiers
- ParameterModifier[]
Um conjunto de modificadores de parâmetros usados para fazer a ligação funcionar com assinaturas de parâmetros nas quais os tipos foram modificados.
Devoluções
Um MethodInfo objeto contendo informação de implementação conforme especificado, ou null se o método não existir.
Exceções
types é null.