从特定配置文件中读取
我有一个应用程序,其中包含一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
我找出我的错误在哪里。我必须使用
而不是
并使用ConfigurationManager.AppSettings["ProviderName"]
读取这些设置I find out where is my mistake. I must use
<appSettings>
instead of<applicationSettings>
and read those settings by usingConfigurationManager.AppSettings["ProviderName"]