Browse Source

Add HttpClientHandler.UseDefaultCredentials = true.

pull/2650/head
Siegfried Pammer 3 years ago
parent
commit
378af34a41
  1. 1
      ILSpy/AboutPage.cs

1
ILSpy/AboutPage.cs

@ -201,6 +201,7 @@ namespace ICSharpCode.ILSpy @@ -201,6 +201,7 @@ namespace ICSharpCode.ILSpy
{
var client = new HttpClient(new HttpClientHandler() {
UseProxy = true,
UseDefaultCredentials = true,
});
string data = await client.GetStringAsync(UpdateUrl);

Loading…
Cancel
Save