Some static utility methods.
More...
#include <Utils.hpp>
|
static MethodInfo ^ | LoadMethod (String^ assemblyPath, String^ typeName, String^ methodName) |
| Load a method from the given assembly path using the default constructor (if not a static method) of the given type. More...
|
|
static MethodInfo ^ | LoadMethodFrom (String^ assemblyName, String^ typeName, String^ methodName) |
| Load a method from the given assembly name using the default constructor (if not a static method) of the given type. More...
|
|
Some static utility methods.
◆ LoadMethod()
static MethodInfo ^ Apache::Geode::Client::Utils::LoadMethod |
( |
String^ |
assemblyPath, |
|
|
String^ |
typeName, |
|
|
String^ |
methodName |
|
) |
| |
|
static |
Load a method from the given assembly path using the default constructor (if not a static method) of the given type.
- Parameters
-
assemblyPath | The path of the assembly. |
typeName | The name of the class containing the method. |
methodName | The name of the method. |
- Returns
- The
System.Reflection.MethodInfo
for the given method, or null if the method is not found.
◆ LoadMethodFrom()
static MethodInfo ^ Apache::Geode::Client::Utils::LoadMethodFrom |
( |
String^ |
assemblyName, |
|
|
String^ |
typeName, |
|
|
String^ |
methodName |
|
) |
| |
|
static |
Load a method from the given assembly name using the default constructor (if not a static method) of the given type.
- Parameters
-
assemblyName | The name of the assembly. |
typeName | The name of the class containing the method. |
methodName | The name of the method. |
- Returns
- The
System.Reflection.MethodInfo
for the given method, or null if the method is not found.