Click or drag to resize
IReflectGetMethod Method (String, BindingFlags)
Retrieves a MethodInfo object that corresponds to a specified method under specified search constraints.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
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: MethodInfo
A MethodInfo object containing the method information, with the match being based on the method name and search constraints specified in bindingAttr.
Exceptions
ExceptionCondition
AmbiguousMatchExceptionThe object implements multiple methods with the same name.
See Also