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: 2.7.0.0
Syntax
| C# |
|---|
public static MethodInfo LoadMethod( string assemblyPath, string typeName, string methodName ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function LoadMethod ( _ assemblyPath As String, _ typeName As String, _ methodName As String _ ) As MethodInfo |
| Visual C++ |
|---|
public: static MethodInfo^ LoadMethod ( String^ assemblyPath, String^ typeName, String^ methodName ) |
Parameters
- assemblyPath
- String
The path of the assembly.
- typeName
- String
The name of the class containing the method.
- methodName
- String
The name of the method.
Return Value
The System.Reflection.MethodInfo for the given method, or null if the method is not found.
See Also
Utils Class
GemStone.GemFire Namespace