如何一次性刷新 .net 配置的所有部分或如何迭代它们?

发布于 2024-12-10 08:58:47 字数 217 浏览 0 评论 0原文

有一些方法称为 ConfigurationManager.RefreshSection("..............");

它用于刷新 .net 配置中的部分,例如: ConfigurationManager.RefreshSection("connectionStrings");

我需要刷新一次配置的所有部分,我有一些想法: 使用 LINQ 或类似的东西迭代它们,但如何做到这一点!

There are some method called
ConfigurationManager.RefreshSection("..............");

It used to refresh sections in .net config for example: ConfigurationManager.RefreshSection("connectionStrings");

I need to refresh all sections of config one time, i have some idea:
To iterate through them using LINQ or something like that, but how to do that!

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

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

发布评论

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

评论(1

稳稳的幸福 2024-12-17 08:58:47

Consider configuration as a dependency. So, in stead of having calls to ConfigurationManager.ConnectionStrings etc. scattered in your application code, start communicating with a Configuration object that is 'injected' in your application. This can be done by dependency injection, if you have an IoC container running, or just by reading it by ConfigurationManager.OpenExeConfiguration().

This way, you can replace the whole Configuration object any time you want, in stead of refreshing sections.

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