从特定配置文件中读取

发布于 2024-12-04 06:58:06 字数 587 浏览 1 评论 0原文

我有一个应用程序,其中包含一个 exe 文件和几个 dll。在我的 dll 文件中的一个类中,我使用 ConfigurationManager.OpenExeConfiguration 来读取主 exe 文件中声明的设置。但是当我在文件中手动更改部分的值时,它总是返回我第一次设置的初始值。

请告诉我必须做什么才能从应用程序中的特定配置文件中读取设置。

这是我的 applicationSettings:

<applicationSettings>
  <UltraData.Bonus.BonusControler.Properties.Settings>
    <setting name="ProviderName" serializeAs="String">
      <value>WebProvider</value>
    </setting>
  </UltraData.Bonus.BonusControler.Properties.Settings>
</applicationSettings>

我想读取 ProviderName 值。

I have an application that contain one exe file and several dlls. In one of the classes in my dll file I use ConfigurationManager.OpenExeConfiguration to read settings that declare in the main exe file. but when I change the values of sections manually in the file it always return the initial value that I set at the first time.

please tell me what I must do for reading settings from a specific config file in my application.

here's my applicationSettings:

<applicationSettings>
  <UltraData.Bonus.BonusControler.Properties.Settings>
    <setting name="ProviderName" serializeAs="String">
      <value>WebProvider</value>
    </setting>
  </UltraData.Bonus.BonusControler.Properties.Settings>
</applicationSettings>

and I want to read ProviderName value.

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

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

发布评论

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

评论(2

萌逼全场 2024-12-11 06:58:06

app.config 文件是唯一被读取的文件。 DLL 没有 .config 文件。

确实需要重新启动应用程序才能重新读取配置。

The app.config file is the only one that is read. There are no .config files for DLLs.

You do need to restart the application in order for the config to be re-read.

寻找我们的幸福 2024-12-11 06:58:06

我找出我的错误在哪里。我必须使用 而不是 并使用 ConfigurationManager.AppSettings["ProviderName"] 读取这些设置

I find out where is my mistake. I must use <appSettings> instead of <applicationSettings> and read those settings by using ConfigurationManager.AppSettings["ProviderName"]

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