<defaultProxy> 的 appsetting.json 版本是啥?
Posted
技术标签:
【中文标题】<defaultProxy> 的 appsetting.json 版本是啥?【英文标题】:What is the appsetting.json version of <defaultProxy>?<defaultProxy> 的 appsetting.json 版本是什么? 【发布时间】:2016-12-14 20:58:07 【问题描述】:.Net Core appsettings.json 版本是什么
<defaultProxy useDefaultCredentials="true">
<proxy autoDetect="True"
proxyaddress="http://localhost:8888/"
usesystemdefault="False" bypassonlocal="False" />
</defaultProxy>
?
【问题讨论】:
【参考方案1】:使用http://www.utilities-online.info/xmltojson 的工具 我得到了以下内容。我没有测试这个。
"defaultProxy":
"-useDefaultCredentials": "true",
"proxy":
"-autoDetect": "True",
"-proxyaddress": "http://localhost:8888/",
"-usesystemdefault": "False",
"-bypassonlocal": "False"
【讨论】:
有人测试过吗? 我很确定 OP 的意思是如何使用 appSettings.json 在现代 ASP.NET Core 应用程序中配置默认(传出)代理;不是如何将 XML 转换为 JSON。以上是关于<defaultProxy> 的 appsetting.json 版本是啥?的主要内容,如果未能解决你的问题,请参考以下文章
遇到 Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration sec
当我在 WinForms 应用程序上使用 DefaultProxy 时有效,但在 WCF 中无效?