如何将参数传递给 WorkflowServiceHost 中托管的 DynamicActivity?

发布于 2024-12-01 02:34:28 字数 197 浏览 1 评论 0原文

如何将参数传递给使用 WorkflowServiceHost 托管的 DynamicActivity(使用 ActivityXamlServices 加载)?我知道我可以将参数传递给工作流中的初始接收活动,但我想在加载工作流时使用特定值来初始化工作流。我已经考虑了工作流定义中的 InArgument 和变量,但这些在加载 DynamicActivity(工作流)时不可见。谢谢。

How can I pass in parameter to a DynamicActivity (loaded using ActivityXamlServices) that is hosted using WorkflowServiceHost? I know I can pass in parameter to the initial Receive activity in the workflow but I want to initialize the workflow with a specific value when it is loaded. I have considered both InArgument and variable in workflow definition but these are not visible upon loading the DynamicActivity (workflow). Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜尕妞 2024-12-08 02:34:28

使用 WorkflowServiceHost,当工作流开始运行时,您不必像使用 WorkflowApplication 或 WorkflowInvoker 那样将参数传递到工作流中。相反,正如您所指出的,它们是 Receive 活动的参数。也就是说,没有什么可以阻止您定义变量并将其值初始化为您自己类型之一的某些静态字段或函数。

With a WorkflowServiceHost you don't pass arguments into workflows when they start running as you do with the WorkflowApplication or WorkflowInvoker. Instead, as you pointed out, they are parameters of the Receive activity. That said there is nothing preventing you from defining variables and initializing their value to some static field or function of one of your own types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文