Note

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

Access to this page requires authorization. You can try .

IHttpMessageHandlerFactory.CreateHandler(String) Method

Definition

Namespace:
System.Net.Http
Assembly:
Microsoft.Extensions.Http.dll
Package:
Microsoft.Extensions.Http v11.0.0-preview.5.26302.115
Source:
IHttpMessageHandlerFactory.cs
Source:
IHttpMessageHandlerFactory.cs
Source:
IHttpMessageHandlerFactory.cs
Source:
IHttpMessageHandlerFactory.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 HttpMessageHandler instance using the configuration that corresponds to the logical name specified by name.

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

Parameters

name
String

The logical name of the message handler to create.

Returns

A new HttpMessageHandler instance.

Remarks

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

The default IHttpMessageHandlerFactory implementation also manages the lifetime of the handler created, so disposing of the HttpMessageHandler returned by this method may have no effect.

Applies to


Feedback

Was this page helpful?