Click or drag to resize

MethodRefFind Method (Type, String, BindingFlags, Boolean, Type)

Find a method on the specified Type with the specified name and signature, using the specified BindingFlags.

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static TypeRefBase Find(
	Type type,
	string name,
	BindingFlags bindingFlags,
	bool isFirstOnLine,
	params Type[] paramTypes
)

Parameters

type
Type: SystemType
name
Type: SystemString
bindingFlags
Type: System.ReflectionBindingFlags
isFirstOnLine
Type: SystemBoolean
paramTypes
Type: SystemType

Return Value

Type: TypeRefBase
A MethodRef to the method, or an UnresolvedRef if no match was found.
See Also