C# Class Dev2.Runtime.ServiceInvoker

A class for invoking methods on classes.
显示文件 Open project: Warewolf-ESB/Warewolf

Public Methods

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.

Method Details

Invoke() public method

Invokes the given method on the given 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

ServiceInvoker() public method

Initializes a new instance of the ServiceInvoker class where the assembly and namespace names are Dev2.Runtime.Services. ServiceInvoker(string, string)
public ServiceInvoker ( ) : System
return System

ServiceInvoker() public method

Initializes a new instance of the ServiceInvoker class.
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