其他分享
首页 > 其他分享> > CodeGo.net>如何确定是否从app.config或machine.config加载配置节或元素?

CodeGo.net>如何确定是否从app.config或machine.config加载配置节或元素?

作者:互联网

我正在从这样的配置加载绑定部分

var bingingsSection = BindingsSection.GetSection(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None));

如何确定加载的配置元素是来自本地应用程序配置文件还是来自machine.config?

解决方法:

使用属性bindingsSection.EvaluationContext.IsMachineLevel.

EvaluationContext.IsMachineLevel也可用于ConfigurationElements,因此您可以为每个单个配置值确定它.

标签:c-4-0,config,c,net,net-4-0
来源: https://codeday.me/bug/20191101/1982736.html