Azure.Identity.HttpPipelineClientFactory
This class is an HttpClient factory which creates an HttpClient which delegates it's transport to an HttpPipeline, to enable MSAL to send requests through an Azure.Core HttpPipeline.
namespace Azure.Identity
{
internal class HttpPipelineClientFactory
{
public HttpPipelineClientFactory(HttpPipeline pipeline, ClientOptions options = null);
public HttpClient GetHttpClient();
public HttpClient GetHttpClient(Func<HttpRequestMessage, X509Certificate2, X509Chain, SslPolicyErrors, bool> validateServerCert);
}
}