Method | Description | |
---|---|---|
Invoke ( string className, string methodName, string args, System.Guid workspaceID, System.Guid dataListID ) : object |
Invokes the given method on the given class.
|
|
ServiceInvoker ( ) : System |
Initializes a new instance of the ServiceInvoker class where the assembly and namespace names are Dev2.Runtime.Services. ServiceInvoker(string, string)
|
|
ServiceInvoker ( string assemblyName, string namespaceName ) : System |
Initializes a new instance of the ServiceInvoker class.
|
public Invoke ( string className, string methodName, string args, System.Guid workspaceID, System.Guid dataListID ) : object | ||
className | string | The name of the class to be used. |
methodName | string | The name of the method to be invoked. |
args | string | The arguments to the method; this is typically a JSON string. |
workspaceID | System.Guid | The workspace ID. |
dataListID | System.Guid | The data list ID. |
return | object |
public ServiceInvoker ( string assemblyName, string namespaceName ) : System | ||
assemblyName | string | The name of the assembly in which the classes containing the methods to be invoked reside. |
namespaceName | string | The name of the namespace in which the classes containing the methods to be invoked reside. |
return | System |