Skip to content

Instantly share code, notes, and snippets.

@davidfowl
davidfowl / AUsage.cs
Last active September 17, 2023 10:26
Header propagation HttpClientFactory middleware
public void ConfigureServices(IServiceCollection services)
{
services.AddHttpClient("myclient");
// Global header propagation for any HttpClient that comes from HttpClientFactory
services.AddHeaderPropagation(options =>
{
options.HeaderNames.Add("Correlation-Id");
});
}