.net app.config 非 APPSETTINGS 元素如何/在哪里/何时存储?

发布于 2024-10-11 20:32:12 字数 245 浏览 3 评论 0原文

各位,

有大量关于 app.config 中的 appSettings 的文章。对于所有其他部分(如 system.ServiceModel),我试图理解:

1. 数据加载时
2. 它存储在哪里——可以通过对象模型访问吗?
3.可以更改吗?价值观可以被操纵吗?可以重新加载整个部分吗?是否可以从不同的 xml 源重新加载整个部分?

也许我的谷歌技能很差——但每一篇文章都想专门谈论appSettings。

Folks,

Tons of articles are written about appSettings in app.config. For all the other sections (like system.ServiceModel), I'm trying to understand:

1. When the data is loaded

2. Where is it stored - accessible via object model?

3. Can be it changed? Can values be manipulated? Can an entire section be reloaded? Can an entire section be reloaded from a different xml source?

Perhaps my google skills are poor - but every article wants to talk about appSettings specifically.

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

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

发布评论

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

评论(2

零崎曲识 2024-10-18 20:32:12

当 IIS 将网站拉入当前应用程序池时,将加载 web.config 文件中其他设置的值。这将使用 .config 文件中设置的配置设置启动该进程。当文件发生更改时,IIS 会收到通知,并且会回收网站正在运行的进程,以在文件发生更改时反映新值。

大多数(如果不是全部)配置选项都可以通过配置文件或 System.Configuration 命名空间获得。通常,您只想在应用程序启动事件时设置或更改这些值。

The values for other settings inside a web.config file are loaded when IIS pulls the website into the current app pool. This starts up the process with the configuration settings set in the .config file. IIS is notified when the file changes and will recycle the process that the website is running to reflect the new values when changes to the file occur.

Most (if not all) configuration options are available via the config file or through the System.Configuration namespace. Usually, you only want to set or change these values at the application on start event.

非要怀念 2024-10-18 20:32:12

我不是 100% 关于#1,但对于其他 2 个,我相信:

2 - 如果您创建自己的“配置模型”(我在这里忘记了名称),那么您可以通过对象模型访问它们。

3 - 程序在运行时无法更改值,app.config 仅用于读取配置。

I'm not 100% about #1, but for the other 2 I believe:

2 - If you create your own "config models" (I forget the name here) then you access them via an object model.

3 - Values can't be changed by your program at runtime, app.config is just for reading configuration.

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