可以在规则/策略的条件中使用自定义类吗?

发布于 2024-10-09 15:23:57 字数 251 浏览 6 评论 0 原文

我是第一次开始使用 Biztalk 2010。

我看了这篇文章(http://www.codeproject.com/KB/biztalk/BRE .aspx)用于制作自定义操作来针对条件触发,但似乎属性是在操作中使用的,而不是在条件中使用的。操作是否可以引用接受非基本类型作为参数(例如自定义类等)的 .NET 方法?

I am getting started with Biztalk 2010 for the first time.

I looked at this article (http://www.codeproject.com/KB/biztalk/BRE.aspx) for making a custom action to fire against a condition, but it seems that properties are being used in actions, not conditions. Can an action reference a .NET method which accepts non-primitive types as parameters (e.g. custom classes etc)?

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

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

发布评论

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

评论(1

要走干脆点 2024-10-16 15:23:57

BizTalk 规则引擎可以处理多种类型的事实,包括条件评估和操作中的普通 CLR 对象。

为了测试您的策略,您需要创建一个 自定义 Fact Creator

当使用 .NET 对象作为事实时,请密切注意正确实现对象标识借助 GetHashCodeEquals 方法。

The BizTalk Rules Engine can deal with several types of facts, including plain-old CLR objects, both in condition evaluation as well as actions.

In order to test you policies, through, you will need to create a custom Fact Creator for the specific .Net classes you want to use.

When using .NET objects as facts, please, pay close attention to correctly implementing object identity with the help of the GetHashCode and Equals methods.

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