动态读取asp.net中的app.settings

发布于 2024-09-13 04:34:41 字数 256 浏览 1 评论 0原文

我已使用以下方法将我的 appsettings 部分移至 web.config 之外:

   <appSettings configSource="AppSettings.config"/>

这允许我更改我的 appsettings,而无需实际重新启动 IIS。

但我知道 IIS 会不断监视所有配置文件。如何附加到事件 my-appsetting-has-changed 以便对此采取一些自定义操作?

I've moved my appsettings section outside of the web.config using:

   <appSettings configSource="AppSettings.config"/>

This allows me to change my appsettings without actually restarting IIS.

I know however, that IIS monitors all configuration files constantly. How can I attach to event my-appsetting-has-changed to take some custom action upon that?

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

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

发布评论

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

评论(2

星星的軌跡 2024-09-20 04:34:41

根据 此参考此参考,

[]ASP.Net 运行时不会检测外部 [config] 文件何时发生更改。

如果这是真的,那么您可能会从 FileSystemWatcher 中获益,但我无法想象如何在 ASP.NET 场景中有效地使用它。

我希望这有帮助。

According to this reference and this reference,

[The] ASP.Net runtime does not detect when the external [config] file changes.

If that's true, then you might get some mileage out of the FileSystemWatcher, but I cannot think how to use that effectively in an ASP.NET scenario.

I hope this helps.

扮仙女 2024-09-20 04:34:41

您可以使用 FileSystemWatcher 类。

You can use the FileSystemWatcher class for this.

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