Type.GetMethodImpl Method
Assembly: mscorlib (in mscorlib.dll)
protected: virtual MethodInfo^ GetMethodImpl ( String^ name, BindingFlags bindingAttr, Binder^ binder, CallingConventions callConvention, array<Type^>^ types, array<ParameterModifier>^ modifiers ) abstract
protected abstract MethodInfo GetMethodImpl ( String name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers )
protected abstract function GetMethodImpl ( name : String, bindingAttr : BindingFlags, binder : Binder, callConvention : CallingConventions, types : Type[], modifiers : ParameterModifier[] ) : MethodInfo
Not applicable.
Parameters
- name
The String containing the name of the method to get.
- bindingAttr
A bitmask comprised of one or more BindingFlags that specify how the search is conducted.
-or-
Zero, to return a null reference (Nothing in Visual Basic).
- binder
A Binder object that defines a set of properties and enables binding, which can involve selection of an overloaded method, coercion of argument types, and invocation of a member through reflection.
-or-
a null reference (Nothing in Visual Basic), to use the DefaultBinder.
- callConvention
The CallingConventions object that specifies the set of rules to use regarding the order and layout of arguments, how the return value is passed, what registers are used for arguments, and what process cleans up the stack.
- types
An array of Type objects representing the number, order, and type of the parameters for the method to get.
-or-
An empty array of the type Type (that is, Type[] types = new Type[0]) to get a method that takes no parameters.
-or-
a null reference (Nothing in Visual Basic). If types is a null reference (Nothing in Visual Basic), arguments are not matched.
- modifiers
An array of ParameterModifier objects representing the attributes associated with the corresponding element in the types array. The default binder does not process this parameter.
Return Value
A MethodInfo object representing the method that matches the specified requirements, if found; otherwise, a null reference (Nothing in Visual Basic).Although the default binder does not process ParameterModifier (the modifiers parameter), you can use the abstract System.Reflection.Binder class to write a custom binder that does process modifiers. ParameterModifier is only used when calling through COM interop, and only parameters that are passed by reference are handled.
If types is a null reference (Nothing in Visual Basic), arguments are not matched.
The types array and the modifiers array have the same length. A parameter specified in the types array can have the following attributes, which are specified in the modifiers array: pdIn, pdOut, pdLcid, pdRetval, pdOptional, and pdHasDefault, which represent [In], [Out], [lcid], [retval], [optional], and a value specifying whether the parameter has a default value. A parameter's associated attributes are stored in the metadata and enhance interoperability.
The following BindingFlags filter flags can be used to define which methods to include in the search:
-
You must specify either BindingFlags.Instance or BindingFlags.Static in order to get a return.
-
Specify BindingFlags.Public to include public methods in the search.
-
Specify BindingFlags.NonPublic to include non-public methods (that is, private and protected members) in the search.
-
Specify BindingFlags.FlattenHierarchy to include public and protected static members up the hierarchy; private static members in inherited classes are not included.
The following BindingFlags modifier flags can be used to change how the search works:
-
BindingFlags.IgnoreCase to ignore the case of name.
-
BindingFlags.DeclaredOnly to search only the methods declared on the Type, not methods that were simply inherited.
See System.Reflection.BindingFlags for more information.
If the requested method is non-public and the caller does not have ReflectionPermission to reflect non-public objects outside the current assembly, this method returns a null reference (Nothing in Visual Basic).
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.