子活动是否可以访问与其父活动相同的工作流程扩展?
我有一个添加到 WorkflowApplication.Extensions 的扩展,WorkflowApplication 指向一个 .xaml 工作流(父级),该工作流在处理过程中调用另一个 .xaml 工作流(子级)。
问题是;当我在子 .xaml 工作流程中时,我可以访问所述扩展吗?
感觉我错过了一些基本的东西! :(
谢谢
I've got an extension that I add to WorkflowApplication.Extensions, the WorkflowApplication is pointing at a .xaml workflow (the parent) which calls another .xaml workflow (the child) during it's processing.
Question is; when I'm inside the the child .xaml workflow can I access said extension?
Get the feeling I'm missing something fundamental! :(
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果子项目被编译并作为活动添加到主工作流程中,它将看到相同的扩展。
如果您启动一个新的工作流程,例如使用 WorkflowInvoker,它将拥有自己的扩展。也就是说,您可以从主工作流程中获取扩展,并根据需要将其添加到子工作流程中。
If the child is compiled and added as an activity to the main workflow it will see the same extensions.
If you start a new workflow, for example with the WorkflowInvoker, it will have it's own extensions. That said you can take extensions from the main workflow and add those to the child workflow as needed.