Click or drag to resize
UtilsLoadMethodFrom Method
Load a method from the given assembly name 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 LoadMethodFrom(
	string assemblyName,
	string typeName,
	string methodName
)

Parameters

assemblyName
Type: SystemString
The name 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