IHttpMessageHandlerFactory.CreateHandler(String) Method

Definition

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