如何在 nServiceBus 中以编程方式获取当前输入队列?

发布于 2024-09-10 00:21:50 字数 235 浏览 3 评论 0原文

如何在 nServiceBus 中以编程方式获取当前输入队列?

你可以这样设置:

Configure.Instance.Configurer.ConfigureProperty<MsmqTransport>(t => t.InputQueue, yourDynamicQueue);

但是我怎样才能得到它呢? (无需以编程方式通过 app.config)

How can I get the current input queue programatically in nServiceBus?

You can set it like this :

Configure.Instance.Configurer.ConfigureProperty<MsmqTransport>(t => t.InputQueue, yourDynamicQueue);

But how can i Get it ? (without programatically going through the app.config)

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

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

发布评论

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

评论(2

冬天旳寂寞 2024-09-17 00:21:50

依赖于 MsmqTransport 并通过 InputQueue 属性访问它

Take a dependency to MsmqTransport and access it through the InputQueue property

风轻花落早 2024-09-17 00:21:50

您应该能够使用 ConfigurationManager 的 GetSection 方法直接从 app.config(或 web.config)文件中获取此内容,将结果转换为 configSection 条目标识的类型。

You should be able to use the ConfigurationManager's GetSection method to get this straight out of the app.config (or web.config) file, casting the result to the type identified by the configSection entry.

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