AccessibleObject::IReflect::GetMethod Method (String^, BindingFlags, Binder^, array<Type^>^, array<ParameterModifier>^)
This API supports the product infrastructure and is not intended to be used directly from your code.
Gets a System.Reflection::MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods. For a description of this member, see IReflect::GetMethod.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
private: virtual MethodInfo^ GetMethod( String^ name, BindingFlags bindingAttr, Binder^ binder, array<Type^>^ types, array<ParameterModifier>^ modifiers ) sealed = IReflect::GetMethod
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, the System.Reflection::BindingFlags enumeration, the kind of type conversion specified by the binder parameter, the overload, and the System.Reflection::ParameterInfo that describes the signature of the method.
This member is an explicit interface member implementation. It can be used only when the AccessibleObject instance is cast to an IReflect interface.
Available since 1.1