Can I change the properties of a HttpClientHandler after the HttpClient has been created?
问题 The HttpClientHandler can be used as a parameter when creating a HttpClient object, but after that there doesn't seem to be any way to access the handler without keeping a reference to it. Dim Handler as New HttpClientHandler Handler.CookieContainer = Cookies Handler.Proxy = Proxy Handler.UseProxy = True Handler.AutomaticDecompression = DecompressionMethods.GZip Or DecompressionMethods.Deflate Dim Client as New HttpClient(Handler, True) Am I able to change the properties of a handler of an