无法将WebConfigurationManager用于WCF项目

时间:2014-10-27 16:09:04

标签: c# wcf asp.net-3.5

我正在尝试编写一个链接另一个项目的App.config文件的WCF服务。 这是一个.net 3.5项目,当我尝试使用时:

SystemsConfigurationHandler systemsSection = Configuration.WebConfigurationManager.GetSection("thirdPartySystemsSection") as SystemsConfigurationHandler;

但它仍然不知道WebConfigurationManager是什么。

Line of code having the problem.

"类型或命名空间名称'配置'命名空间中不存在' System.Web'"

然后在对象浏览器中清楚地看到它。我该如何解决这个问题?

System.Web.Configuration shows WebConfigurationManager there.

此外,我正在尝试从另一个项目中浏览链接的App.config文件,以了解我正在做的事情。

1 个答案:

答案 0 :(得分:1)

为什么使用WebConfigurationManager

  

使用WebConfigurationManager是首选方法   与 Web应用程序相关的配置文件。对于客户   应用程序,使用ConfigurationManager类。

请注意,您也不能只访问其他项目的.config文件。你可以try this