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.GemFireAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic static MethodInfo LoadMethodFrom(
string assemblyName,
string typeName,
string methodName
)
Public Shared Function LoadMethodFrom (
assemblyName As String,
typeName As String,
methodName As String
) As MethodInfo
public:
static MethodInfo^ LoadMethodFrom(
String^ assemblyName,
String^ typeName,
String^ methodName
)
static member LoadMethodFrom :
assemblyName : string *
typeName : string *
methodName : string -> MethodInfo
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