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