RuntimeReflectionExtensions.GetRuntimeMethods Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves a collection that represents all methods defined on a specified type.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetRuntimeMethods ( _ type As Type _ ) As IEnumerable(Of MethodInfo)
Parameters
- type
- Type: System.Type
The type that contains the methods.
Return Value
Type: System.Collections.Generic.IEnumerable(Of MethodInfo)A collection of methods for the specified type.
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.
Show: