Module.GetMethod Method (String, Type())
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the global method that matches the specified name and parameter types.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
- Type: System.String
The method name.
- types
- Type:
System.Type
()
The parameter types to search for.
Return Value
Type: System.Reflection.MethodInfoThe global method that matches the specified criteria, or Nothing if the method does not exist.
| Exception | Condition |
|---|---|
| ArgumentNullException | name is Nothing, types is Nothing, or an element of types is Nothing. |
| AmbiguousMatchException | More than one global method matches the specified criteria. |
Show: