⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ienginemanager.cs

📁 博客园WxWinter写的WF工作流入门学习资料及示例代码
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -