IReflect.GetMethod Method (String, BindingFlags, Binder, Type(), ParameterModifier())
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Function GetMethod ( _ name As String, _ bindingAttr As BindingFlags, _ binder As Binder, _ types As Type(), _ modifiers As ParameterModifier() _ ) As MethodInfo
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.