Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IHttpClientFactory.CreateClient(String) Method

Definition

Namespace:
System.Net.Http
Assembly:
Microsoft.Extensions.Http.dll
Package:
Microsoft.Extensions.Http v11.0.0-preview.5.26302.115
Source:
IHttpClientFactory.cs
Source:
IHttpClientFactory.cs
Source:
IHttpClientFactory.cs
Source:
IHttpClientFactory.cs

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.

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. It is generally not necessary to dispose of the HttpClient as the IHttpClientFactory tracks and disposes resources used by the HttpClient.

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

Applies to


Feedback

Was this page helpful?