Click or drag to resize
TypeGetMethod Method (String, Type, ParameterModifier)
Searches for the specified public method whose parameters match the specified argument types and modifiers.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public MethodInfo GetMethod(
	string name,
	Type[] types,
	ParameterModifier[] modifiers
)

Parameters

name
Type: SystemString
The string containing the name of the public method to get.
types
Type: SystemType
An array of Type objects representing the number, order, and type of the parameters for the method to get.-or- An empty array of Type objects (as provided by the EmptyTypes field) to get a method that takes no parameters.
modifiers
Type: System.ReflectionParameterModifier
An array of ParameterModifier objects representing the attributes associated with the corresponding element in the types array. To be only used when calling through COM interop, and only parameters that are passed by reference are handled. The default binder does not process this parameter.

Return Value

Type: MethodInfo
An object representing the public method that matches the specified requirements, if found; otherwise, null.
Exceptions
ExceptionCondition
AmbiguousMatchExceptionMore than one method is found with the specified name and specified parameters.
ArgumentNullExceptionname is null.-or- types is null.-or- One of the elements in types is null.
ArgumentExceptiontypes is multidimensional.-or- modifiers is multidimensional.
See Also