dotnet core Compress HttpClient requests with GZIP By streaming the gzip compression instead of using MemoryStream, we can significantly reduce memory allocation and avoid OutOfMemoryExceptions with large payloads.
httpclient Testing your Polly policies Polly enables you to configure policies to handle different error scenarios when sending http requests. I show you how you can test these policies.
dotnet Prefix your http requests without touching the actual HttpClient code Prefix your http calls without modifying the actual HttpClient code using a custom DelegatingHandler
httpclient How to test configuration of HttpClient when using AddHttpClient Shows how to test the code written inside the AddHttpClient extension method