IReflectGetMethod Method (String, BindingFlags) |
Retrieves a
MethodInfo object that corresponds to a specified method under specified search constraints.
Namespace: System.ReflectionAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax MethodInfo GetMethod(
string name,
BindingFlags bindingAttr
)
Parameters
- name
- Type: SystemString
The name of the member to find. - bindingAttr
- Type: System.ReflectionBindingFlags
The binding attributes used to control the search.
Return Value
Type:
MethodInfoA
MethodInfo object containing the method information, with the match being based on the method name and search constraints specified in
bindingAttr.
Exceptions Exception | Condition |
---|
AmbiguousMatchException | The object implements multiple methods with the same name. |
See Also