工作流程应用输出
为了从 Workflowinvoker 获取输出,我们必须使用
var output = WorkflowInvoker.Invoke(new Activity1() { str = night });
HttpContext.Current.Response.Write(output["res"]);
WorkflowApplication 命令,但我们必须使用什么?我尝试了与 Workflowinvoker 相同的方法,但它不起作用。
In order to get output from Workflowinvoker we have to use
var output = WorkflowInvoker.Invoke(new Activity1() { str = night });
HttpContext.Current.Response.Write(output["res"]);
but what do we have to use for the WorkflowApplication command? I tried the same as Workflowinvoker but it doesnt works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置 Completed 回调。 WorkflowApplication 异步执行工作流,而 WorkflowInvoker 会阻塞直至完成。
You need to set the Completed callback. The WorkflowApplication executes the workflow asynchronously, whereas the WorkflowInvoker blocks until it completes.