From 378af34a4181d289e7c7cc24883cdc9c1ca3b1cd Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Mon, 7 Mar 2022 18:22:28 +0100 Subject: [PATCH] Add HttpClientHandler.UseDefaultCredentials = true. --- ILSpy/AboutPage.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ILSpy/AboutPage.cs b/ILSpy/AboutPage.cs index 09b14efce..9b190310f 100644 --- a/ILSpy/AboutPage.cs +++ b/ILSpy/AboutPage.cs @@ -201,6 +201,7 @@ namespace ICSharpCode.ILSpy { var client = new HttpClient(new HttpClientHandler() { UseProxy = true, + UseDefaultCredentials = true, }); string data = await client.GetStringAsync(UpdateUrl);