Tag: configurationmanager

使用ConfigurationManager加载System.ServiceModelconfiguration部分

使用C#.NET 3.5和WCF,我试图写出客户端应用程序(客户端连接到的服务器的名称)的一些WCFconfiguration。 显而易见的方法是使用ConfigurationManager加载configuration部分并写出我需要的数据。 var serviceModelSection = ConfigurationManager.GetSection("system.serviceModel"); 似乎总是返回null。 var serviceModelSection = ConfigurationManager.GetSection("appSettings"); 完美的作品。 configuration部分存在于App.config中,但由于某种原因ConfigurationManager拒绝加载system.ServiceModel部分。 我想避免手动加载xxx.exe.config文件和使用XPath,但如果我不得不诉诸我会。 只是看起来有点黑客。 有什么build议么?