When adding the client to the service collection you should be able to configure the handler there
Using the named client approach I'll use a constant to hold the client name.
public static class NamedHttpClients {
public const string ProxiedClient = "ProxiedClient";
}
From there it is just a matter of configuring the client
//...
var serviceCollection = new ServiceCollection();
serviceCollection
.AddHttpClient(NamedHttpClients.ProxiedClient)
.ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler() {
Proxy = httpProxy
});
var services = serviceCollection.BuildServiceProvider();
So that when calling the client via a resolved IHttpClientFactory
var httpClientFactory = services.GetService<IHttpClientFactory>();
var client = httpClientFactory.CreateClient(NamedHttpClients.ProxiedClient);
the returned client will use the handler with the proxy.