c# – ConfigurationManager.GetSection和Configuration.GetSection有什么区别?

c# – ConfigurationManager.GetSection和Configuration.GetSection有什么区别?,第1张

概述我正在尝试基于AppSettings创建自定义配置文件部分: <configSections> <section name="customConfiguration" type="System.Configuration.AppSettingsSection, System.Configuration, 我正在尝试基于AppSettings创建自定义配置文件部分:
<configSections>  <section name="customConfiguration"            type="System.Configuration.AppSettingsSection,System.Configuration,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a"/></configSections>

当我尝试通过ConfigurationManager.GetSection(“customConfiguration”)读取它时,返回的对象是System.Configuration.keyvalueInternalCollection类型.我无法读取此集合的值,虽然我可以看到键,但我无法将其转换为AppSettingsSection.

This Stackoverflow回答建议我应该使用

Configuration config =     ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);AppSettingsSection customSettingSection =     (AppSettingsSection)config.GetSection("customConfiguration");

这很有效.我的问题是:ConfigurationManager.GetSection()和Configuration.GetSection()之间有什么区别?我何时应该使用另一个?何时应该使用另一个?

解决方法 根据配置类 http://msdn.microsoft.com/en-us/library/system.configuration.configuration.aspx上的MSDN文档,

If your application needs read-only access to its own configuration,it is recommended that you use the 07001 method overloads for Web applications. For clIEnt application,use the 07002 method.

These methods provIDe access to the cached configuration values for the current application,which has better performance than the Configuration class.

具体来说,在客户端应用程序中,ConfigurationManager检索通过合并应用程序配置文件,本地用户配置文件和漫游配置文件获得的配置文件.

总结

以上是内存溢出为你收集整理的c# – ConfigurationManager.GetSection和Configuration.GetSection有什么区别?全部内容,希望文章能够帮你解决c# – ConfigurationManager.GetSection和Configuration.GetSection有什么区别?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251602.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存