将 Ninject 模块添加到现有内核

发布于 2024-12-18 20:50:30 字数 200 浏览 1 评论 0原文

我有一个场景,应用程序中有很多功能,这些功能是根据网络上存在的网络设备启用和禁用的。我正在使用 Ninject 来管理应用程序中当前的功能树。

我想要做的是能够在应用程序运行时添加和删除一组到我的内核的绑定。我想使用类似 Ninject 模块的东西来将它们捆绑在一起,但是我不知道如何从现有内核中添加/删除模块。

有人知道如何做到这一点或有更好的选择吗?

I have a scenario where I have a bunch of features in an application which are being enabled and disabled on the basis of network devices being present on the network. I'm using Ninject to manage my current feature tree within the application.

What I want to do is to be able to add and remove a set of bindings to my kernel while the application is running. I would like to use something like a Ninject module to be able to bundle these together, however I can't figure out how to add/remove a Module from an existing Kernel.

Anyone know how to do this or have a better option?

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

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

发布评论

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

评论(1

慕烟庭风 2024-12-25 20:50:30

不要在第一次解决后尝试添加/删除!内核应该在解析对象之前完全配置,并且在第一次解析之后配置不应再更改解决

请改用条件绑定:

Bind<INetworkDevice>().To<NetworkPrinter>().When(ctx => PrinterIsEnabled());

Don't try to add/remove after the first resolve! The kernel should be configured completely before resolving objects and the configuration should not change anymore after the first resolve.

Use conditional bindings instead:

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