App.config 和 ConfigurationManager
如果我调用 OpenMappedExeConfiguration() 方法并指定一个配置文件(filemap)作为参数,这是否意味着 ConfigurationManager 将从该点开始使用新指定的配置文件并忽略 app.config?
我知道 ConfigurationManager 默认情况下会查找 app.config,但因为 OpenMappedExeConfiguration() 方法返回一个 Configuration 对象,所以返回的实例几乎就像唯一适用于指定的配置文件一样,但我不能 100% 确定。
If I call the OpenMappedExeConfiguration() method and specify a config file (filemap) as a parameter, does this mean that the ConfigurationManager will use the newly specified config file from that point onwards and ignore app.config?
I know that ConfigurationManager looks for app.config by default, but because the OpenMappedExeConfiguration() method returns a Configuration object, its almost as if the instance returned is the only applicable to the config file specified, but I'm not 100% sure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我记得它只会打开配置并返回
Configuration
对象,它不会更改默认对象。As far as I remember it will just open the configuration and return the
Configuration
object, its not going to change the default one.以此作为参数调用当前配置打开AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
也可以在消息框中使用它来显示正在使用的配置文件
use this as parameter to call current config open AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
can also use this in messagebox to show config file in use