IHttpClientFactory.CreateClient(String) Method

Definition

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

public:
 System::Net::Http::HttpClient ^ CreateClient(System::String ^ name);
public System.Net.Http.HttpClient CreateClient (string name);
abstract member CreateClient : string -> System.Net.Http.HttpClient
Public Function CreateClient (name As String) As HttpClient

Parameters

name
String

The logical name of the client to create.

Returns

A new HttpClient instance.

Remarks

Each call to CreateClient(String) is guaranteed to return a new HttpClient instance. Callers may cache the returned HttpClient instance indefinitely or surround its use in a using block to dispose it when desired.

The default IHttpClientFactory implementation may cache the underlying HttpMessageHandler instances to improve performance.

Callers are also free to mutate the returned HttpClient instance's public properties as desired.

Applies to