System.Type.GetMethod Method

Searches for the public method with the specified name.

Syntax

public System.Reflection.MethodInfo GetMethod (string name)

Parameters

name
The string containing the name of the public method to get.

Returns

An object that represents the public method with the specified name, if found; otherwise, null.

Exceptions

TypeReason
System.Reflection.AmbiguousMatchExceptionMore than one method matching the specified criteria was found.
ArgumentNullException name is null.

Remarks

The search for name is case-sensitive. The search includes public static and public instance methods.

Note:

You cannot omit parameters when looking up constructors and methods. You can only omit parameters when invoking.

If the current T:System.Type represents a constructed generic type, this method returns the System.Reflection.MethodInfo with the type parameters replaced by the appropriate type arguments.

If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the methods of the class constraint, or the methods of object if there is no class constraint.

Note:

For generic methods, do not include the type arguments in name. For example, the C# code GetMember("MyMethod<int>") searches for a member with the text name "MyMethod<int>", rather than for a method named MyMethod that has one generic argument of type int.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0