C# 클래스 Dev2.Runtime.ServiceInvoker

A class for invoking methods on classes.
파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf

공개 메소드들

메소드 설명
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