ModuleBuilder.GetMethodImpl Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the module-level method that matches the specified criteria.
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
Parameters
- name
- String
The method name.
- bindingAttr
- BindingFlags
A combination of BindingFlags
bit flags used to control the search.
- binder
- Binder
An object that implements Binder
, containing properties related to this method.
- callConvention
- CallingConventions
The calling convention for the method.
- types
- Type[]
The parameter types of the method.
- modifiers
- ParameterModifier[]
An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified.
Returns
A method that is defined at the module level, and matches the specified criteria; or null
if such a method does not exist.
Exceptions
name
is null
, types
is null
, or an element of types
is null
.
Remarks
This method provides the implementation for all overloads of the inherited Module.GetMethod method. Use the inherited Module.GetMethod method to get methods that have been declared at the module level. Module-level methods are defined in emitted code by using the DefineGlobalMethod method.
Important
Module-level methods cannot be retrieved until after the CreateGlobalFunctions method has been called for the module.