Click or drag to resize

MethodRefIsImplicitExtensionMethodUsage Method

Determine if a method object is an extension method reference used in an implicit context.

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static bool IsImplicitExtensionMethodUsage(
	Object methodObj,
	CodeObject parent
)

Parameters

methodObj
Type: SystemObject
The method object (a MethodDeclBase or MethodDefinition/MethodInfo).
parent
Type: Nova.CodeDOMCodeObject
The parent object of the invocation (generally a Dot object).

Return Value

Type: Boolean
True if the method object is for an extension method and is used in an implicit context, otherwise false.
See Also