Module::GetMethod Method (String^, BindingFlags, Binder^, CallingConventions, array<Type^>^, array<ParameterModifier>^)
Returns a method having the specified name, binding information, calling convention, and parameter types and modifiers.
Assembly: mscorlib (in mscorlib.dll)
public: MethodInfo^ GetMethod( String^ name, BindingFlags bindingAttr, Binder^ binder, CallingConventions callConvention, array<Type^>^ types, array<ParameterModifier>^ modifiers )
Parameters
- name
-
Type:
System::String^
The method name.
- bindingAttr
-
Type:
System.Reflection::BindingFlags
One of the BindingFlags bit flags used to control the search.
- binder
-
Type:
System.Reflection::Binder^
An object that implements Binder, containing properties related to this method.
- callConvention
-
Type:
System.Reflection::CallingConventions
The calling convention for the method.
- types
-
Type:
array<System::Type^>^
The parameter types to search for.
- 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^A MethodInfo object in accordance with the specified criteria, or null if the method does not exist.
| Exception | Condition |
|---|---|
| ArgumentNullException | name is null, types is null, or types (i) is null. |
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0