在web.config上存储HttpClient BaseAddress

时间:2013-09-03 21:15:29

标签: asp.net-mvc-4 asp.net-web-api

我想在我的ASP.NET MVC4项目web.config上存储HttpClient BaseAddress Uri。

在哪个部分中添加此配置的正确位置?

1 个答案:

答案 0 :(得分:1)

在web.config

中添加
<configuration>
  <appSettings>
    <add key="BaseAddress" value="http://xxx/"/>
  </appSettings>
</configuration>

获得这样的价值:

ConfigurationManager.AppSettings["BaseAddress"]