C# Class Dev2.Runtime.ServiceInvoker

A class for invoking methods on classes.
Afficher le fichier Open project: Warewolf-ESB/Warewolf

Méthodes publiques

Méthode 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 méthode

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.
Résultat object

ServiceInvoker() public méthode

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

ServiceInvoker() public méthode

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.
Résultat System