是否可以从UWP应用程序中读取默认代理设置(即HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet设置中的值)?
答案 0 :(得分:1)
这有效:
using Windows.Networking.Connectivity;
Uri uri = new Uri("http://www.example.com");
ProxyConfiguration xx = await NetworkInformation.GetProxyConfigurationAsync(uri);