ienginemanager.cs
来自「博客园WxWinter写的WF工作流入门学习资料及示例代码」· CS 代码 · 共 25 行
CS
25 行
using System;
namespace wxwinter.wf.Service
{
public interface IEngineManager
{
bool AbortInstance(string guid);
string CreateWorkflowFormXomlString(string xomlstring);
string CreateWorkflowFromXomlFile(string xomlfile);
System.Collections.ArrayList GetEngineLog();
System.Collections.ArrayList GetInstanceList();
System.Collections.ArrayList GetServiceList();
string GetWorkflowInstanceXomlString(string guid);
bool IsExistInstance(string guid);
int NActiveINstance { get; }
int NCompletedInstance { get; }
int NCreateInstance { get; }
int NStarteInstance { get; }
bool ResumeInstance(string guid);
void sendMsg(string v);
bool StartInstance(string guid);
bool SuspendInstance(string guid, string message);
bool TerminateInstance(string guid, string message);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?