IReflect.GetMethod Method (String, BindingFlags, Binder, Type[], ParameterModifier[])
Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
MethodInfo GetMethod(
string name,
BindingFlags bindingAttr,
Binder binder,
Type[] types,
ParameterModifier[] modifiers
)
Parameters
- name
- Type: System.String
The name of the member to find.
- bindingAttr
- Type: System.Reflection.BindingFlags
The binding attributes used to control the search.
- binder
- Type: System.Reflection.Binder
An object that implements Binder, containing properties related to this method.
- types
- Type: System.Type[]
An array used to choose among overloaded methods.
- modifiers
- Type: System.Reflection.ParameterModifier[]
An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified.
Return Value
Type: System.Reflection.MethodInfoThe requested method that matches all the specified parameters.
| Exception | Condition |
|---|---|
| AmbiguousMatchException | The object implements multiple methods with the same name. |
The return value is a match based on the method name, BindingFlags enum member, the kind of type conversion specified by the binder parameter, the overload, and the ParameterInfo that describes the signature of the method.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.