NServiceBus:它可以在没有 XML 配置的情况下工作吗?

发布于 2024-09-18 07:26:06 字数 109 浏览 3 评论 0原文

我不想使用任何 XML 配置。是否可以在没有 XML 配置的情况下设置 NServiceBus?我真的希望我的发布者全部在代码中配置,并且我希望能够在代码中显式指定从传输到序列化器再到订阅存储的所有内容。

I don't want to use any XML configuration. Is it possible to have NServiceBus set up with NO XML configuration? I really want my publisher to be configured all in code, and I want to be able to specify everything from the transport to the serializer to the subscription storate explicitly in code.

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

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

发布评论

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

评论(1

紫﹏色ふ单纯 2024-09-25 07:26:06

是的。 看看这个要点,其中包含通过自定义配置源来完成此操作的代码。如果未使用其中任何一个,则默认使用配置代码。

用法如下:

Configure.With()
    .CustomConfigurationSource(new UserConfigurationSource(
    unicast => {
        // unicast bus setup
    },
    msmq => {
       // msmq setup
    })
 // rest of code

yes. take a look at this gist which has the code to do exactly this via a custom configuration source. it defaults to using config code if either is not used.

usage would be like such:

Configure.With()
    .CustomConfigurationSource(new UserConfigurationSource(
    unicast => {
        // unicast bus setup
    },
    msmq => {
       // msmq setup
    })
 // rest of code
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文