什么是.Net Core appsettings.json版本

<defaultProxy useDefaultCredentials="true">
    <proxy autoDetect="True"
           proxyaddress="http://localhost:8888/"
           usesystemdefault="False" bypassonlocal="False" />
</defaultProxy>

最佳答案

http://www.utilities-online.info/xmltojson使用工具
我得到了以下内容。我没有测试。

 {
      "defaultProxy": {
        "-useDefaultCredentials": "true",
        "proxy": {
          "-autoDetect": "True",
          "-proxyaddress": "http://localhost:8888/",
          "-usesystemdefault": "False",
          "-bypassonlocal": "False"
        }
      }
    }

关于web-config - <defaultProxy>的appsetting.json版本是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41152044/

10-13 08:59