IReflect::GetMethod Method (String^, BindingFlags, Binder^, array<Type^>^, array<ParameterModifier>^)
Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.
Assembly: mscorlib (in mscorlib.dll)
MethodInfo^ GetMethod( String^ name, BindingFlags bindingAttr, Binder^ binder, array<Type^>^ types, array<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:
array<System::Type^>^
An array used to choose among overloaded methods.
- modifiers
-
Type:
array<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::MethodInfo^The 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.
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0