Click or drag to resize
UtilsLoadMethod Method
Load a method from the given assembly path using the default constructor (if not a static method) of the given type.

Namespace: GemStone.GemFire
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public static MethodInfo LoadMethod(
	string assemblyPath,
	string typeName,
	string methodName
)

Parameters

assemblyPath
Type: SystemString
The path of the assembly.
typeName
Type: SystemString
The name of the class containing the method.
methodName
Type: SystemString
The name of the method.

Return Value

Type: MethodInfo
The System.Reflection.MethodInfo for the given method, or null if the method is not found.
See Also