从UWP应用读取系统代理设置

时间:2019-05-09 13:30:09

标签: c# windows uwp proxy

是否可以从UWP应用程序中读取默认代理设置(即HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet设置中的值)?

1 个答案:

答案 0 :(得分:1)

这有效:

using Windows.Networking.Connectivity;


Uri uri = new Uri("http://www.example.com");               
ProxyConfiguration xx = await NetworkInformation.GetProxyConfigurationAsync(uri);