C# Класс Dev2.Runtime.ServiceInvoker

A class for invoking methods on classes.
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Invoke() публичный Метод

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.
Результат object

ServiceInvoker() публичный Метод

Initializes a new instance of the ServiceInvoker class where the assembly and namespace names are Dev2.Runtime.Services. ServiceInvoker(string, string)
public ServiceInvoker ( ) : System
Результат System

ServiceInvoker() публичный Метод

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.
Результат System