IMsalHttpClientFactory Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Factory responsible for creating HttpClient. See https://learn.microsoft.com/dotnet/api/system.net.http.httpclient?view=net-7.0#instancing for more details.
public interface IMsalHttpClientFactory
type IMsalHttpClientFactory = interface
Public Interface IMsalHttpClientFactory
Remarks
Implementations must be thread safe. Do not create a new HttpClient for each call to GetHttpClient() - this leads to socket exhaustion. If your app uses Integrated Windows Authentication, ensure UseDefaultCredentials is set to true.
Methods
GetHttpClient() |
Method returning an HTTP client that will be used to communicate with Azure AD. This enables advanced scenarios. See https://aka.ms/msal-net-application-configuration. |