在WF4中,如何定义可以作为变量范围的自定义活动?

发布于 2024-10-13 13:42:55 字数 158 浏览 5 评论 0原文

当我重新托管设计器时,我可以声明变量及其范围。然而,并非所有活动都可以成为变量的作用域。我注意到 Sequence、Parallel、PickBranch 可以作为主机,但 Pick、If、Delay 则不能。目前我的所有自定义活动都不能成为变量的范围。我应该怎么做才能使自定义活动能够成为变量的范围?

When I rehost a designer, I can declare variables and their scopes. However, not all activities can be the scope of a variable. I notice Sequence, Parallel, PickBranch can be the host, but Pick, If, Delay, can't. And all of my custom activities currently cannot be the scope of a variable. What should I do to make a custom activity able to be the scope of variables?

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

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

发布评论

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

评论(1

如痴如狂 2024-10-20 13:42:55

只有向可以执行多个子活动的活动添加变量才有意义。因此,If、Delay 等不能,而 Sequence、While 等可以。

如果您想创建自己的复合活动,请添加公共 Collection;变量{获取; } 添加到您的活动并在构造函数中初始化集合。

It only makes sense to add variables to activities that can have multiple child activities execute. As a result If, Delay etc can't and Sequence, While etc can.

If you want to create you own composite activity add a public Collection<Variable> Variables { get; } to your activity and initialize the collection in the constructor.

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