IHttpMessageHandlerFactory Interface

Definition

A factory abstraction for a component that can create HttpMessageHandler instances with custom configuration for a given logical name.

public interface class IHttpMessageHandlerFactory
public interface IHttpMessageHandlerFactory
type IHttpMessageHandlerFactory = interface
Public Interface IHttpMessageHandlerFactory

Remarks

A default IHttpMessageHandlerFactory can be registered in an IServiceCollection by calling AddHttpClient(IServiceCollection). The default IHttpMessageHandlerFactory will be registered in the service collection as a singleton.

Methods

CreateHandler(String)

Creates and configures an HttpMessageHandler instance using the configuration that corresponds to the logical name specified by name.

Extension Methods

CreateHandler(IHttpMessageHandlerFactory)

Creates a new HttpMessageHandler using the default configuration.

Applies to