RuntimeReflectionExtensions.GetRuntimeMethod Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Retrieves an object that represents a specified method.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

Syntax

<ExtensionAttribute> _
Public Shared Function GetRuntimeMethod ( _
    type As Type, _
    name As String, _
    parameters As Type() _
) As MethodInfo
public static MethodInfo GetRuntimeMethod(
    this Type type,
    string name,
    Type[] parameters
)

Parameters

  • parameters
    Type: array<System..::.Type>[]()[]
    An array that contains the method's parameters.

Return Value

Type: System.Reflection..::.MethodInfo
An object that represents the specified method, or nullNothingnullptra null reference (Nothing in Visual Basic) if the method is not found.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

RuntimeReflectionExtensions Class

System.Reflection Namespace