随笔分类 - WF
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.SessionState;using System.Workflow.Activities;using Syste...
阅读全文
摘要:using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using ...
阅读全文
摘要:WorkflowRuntime表2-1 WorkflowRuntime的属性属性功能IsStarted用来指明workflow运行时是否已经启动并准备接受workflow实例。当宿主调用“StartRuntime”前IsStarted为False。期间它一直维持True直到宿主调用“StopRuntime”为止。需注意的是当它正在运行中你不能增加核心...
阅读全文
摘要:1. 无参数构建WorkflowInstance WorkflowInstance instance = workflowRuntime.CreateWorkflow(typeof(PCodeFlow.Workflow1));2. 有参数构建WorkflowInstance Dictionary<string,object>wfArgs=newDictionary<string,...
阅读全文