IReflect.GetMethod Method

Definition

Retrieves a MethodInfo object that corresponds to a specified method.

Overloads

GetMethod(String, BindingFlags)

Retrieves a MethodInfo object that corresponds to a specified method under specified search constraints.

GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.

GetMethod(String, BindingFlags)

Retrieves a MethodInfo object that corresponds to a specified method under specified search constraints.

C#
public System.Reflection.MethodInfo? GetMethod (string name, System.Reflection.BindingFlags bindingAttr);
C#
public System.Reflection.MethodInfo GetMethod (string name, System.Reflection.BindingFlags bindingAttr);

Parameters

name
String

The name of the member to find.

bindingAttr
BindingFlags

The binding attributes used to control the search.

Returns

A MethodInfo object containing the method information, with the match being based on the method name and search constraints specified in bindingAttr.

Exceptions

The object implements multiple methods with the same name.

See also

Applies to

.NET 9 dan versi lain
Produk Versi
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

Retrieves a MethodInfo object corresponding to a specified method, using a Type array to choose from among overloaded methods.

C#
public System.Reflection.MethodInfo? GetMethod (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder? binder, Type[] types, System.Reflection.ParameterModifier[]? modifiers);
C#
public System.Reflection.MethodInfo GetMethod (string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, Type[] types, System.Reflection.ParameterModifier[] modifiers);

Parameters

name
String

The name of the member to find.

bindingAttr
BindingFlags

The binding attributes used to control the search.

binder
Binder

An object that implements Binder, containing properties related to this method.

types
Type[]

An array used to choose among overloaded methods.

modifiers
ParameterModifier[]

An array of parameter modifiers used to make binding work with parameter signatures in which the types have been modified.

Returns

The requested method that matches all the specified parameters.

Exceptions

The object implements multiple methods with the same name.

Remarks

The return value is a match based on the method name, BindingFlags enum member, the kind of type conversion specified by the binder parameter, the overload, and the ParameterInfo that describes the signature of the method.

See also

Applies to

.NET 9 dan versi lain
Produk Versi
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1