Type.GetMethod Method (String, array<Type[], array<ParameterModifier[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Searches for the specified public method whose parameters match the specified argument types and modifiers.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Function GetMethod ( _
name As String, _
types As Type(), _
modifiers As ParameterModifier() _
) As MethodInfo
public MethodInfo GetMethod(
string name,
Type[] types,
ParameterModifier[] modifiers
)
Parameters
- name
Type: System.String
The String containing the name of the public method to get.
- types
Type: array<System.Type[]
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: array<System.Reflection.ParameterModifier[]
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: System.Reflection.MethodInfo
A MethodInfo object representing the public method that matches the specified requirements, if found; otherwise, nulla null reference (Nothing in Visual Basic).
Exceptions
Exception | Condition |
---|---|
AmbiguousMatchException | More than one method is found with the specified name and specified parameters. |
ArgumentNullException | name is nulla null reference (Nothing in Visual Basic). -or- types is nulla null reference (Nothing in Visual Basic). -or- One of the elements in types is nulla null reference (Nothing in Visual Basic). |
ArgumentException | types is multidimensional. -or- modifiers is multidimensional. |
Remarks
Although the default binder does not process ParameterModifier (the modifiers parameter), you can use the abstract System.Reflection.Binder class to write a custom binder that does process modifiers. ParameterModifier is only used when calling through COM interop, and only parameters that are passed by reference are handled.
The types array and the modifiers array have the same length. A parameter specified in the types array can have the following attributes, which are specified in the modifiers array: pdIn, pdOut, pdLcid, pdRetval, pdOptional, and pdHasDefault, which represent [In], [Out], [lcid], [retval], [optional], and a value specifying whether the parameter has a default value. A parameter's associated attributes are stored in the metadata and are used for interoperability.
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 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 GetMethod("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. Instead, use GetMethod("MyMethod") with the appropriate parameter in the types array. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.