getheme225

Results 1 comments of getheme225

A custom DelegatingHandler may help here, by changing the request version ``` protected override Task SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) { request.Version = new Version(1, 0); return base.SendAsync(request, cancellationToken); } ```