IHttpMessageHandlerFactory.CreateHandler(String) Method
Definition
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.