Load a method from the given assembly path using the default
constructor (if not a static method) of the given type.
Namespace: GemStone.GemFireAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic static MethodInfo LoadMethod(
string assemblyPath,
string typeName,
string methodName
)
Public Shared Function LoadMethod (
assemblyPath As String,
typeName As String,
methodName As String
) As MethodInfo
public:
static MethodInfo^ LoadMethod(
String^ assemblyPath,
String^ typeName,
String^ methodName
)
static member LoadMethod :
assemblyPath : string *
typeName : string *
methodName : string -> MethodInfo
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