WF - While Activity 中的 ActivityExecutionContext
我有一个 SequentialActivity,它也包含一个 WhileActivity。在 while 活动中,我想从服务调用方法 - 如果它返回 true,我会执行延迟活动,否则我会继续执行工作流,因此我需要使用 GetService 方法检索服务。如何从 while 活动的代码条件访问执行上下文? (WF 3.5)
I have a SequentialActivity that also contains a WhileActivity. In the while activity I want to call a method from a service - if it returns true I execute a delay activity, otherwise I continue with workflow execution, therefore I need to retrieve the service using the GetService method. How can I access the execution context from the code condition of the while activity? (WF 3.5)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能而且需要创建自定义活动或将代码放入可以从 VB 表达式调用的其他函数中。
You can't and will need to either create a custom activity or put the code in some other function that you can call from a VB expression.