Extensions.GetMethods Method NReflect
Gets the methods with the specified name and parameterTypes of the OnlineTypetype regardless if the methods are generic or not.

Namespace: NReflect
Assembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax

public static IEnumerable<MethodInfo> GetMethods(
	this Type type,
	string name,
	params Type[] parameterTypes
)

Parameters

type
Type: OnlineSystem.Type
The type to get the methods from.
name
Type: OnlineSystem.String
The name of the methods to get.
parameterTypes
Type:OnlineSystem.Type[]
The parameters of the method.

Return Value

The OnlineMethodInfos of the found methods.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type OnlineType. When you use instance method syntax to call this method, omit the first parameter. For more information, see OnlineExtension Methods (Visual Basic) or OnlineExtension Methods (C# Programming Guide).
See Also