HttpClient Constructor (HttpMessageHandler)

Initializes a new instance of the HttpClient class with a specific handler.

Namespace:  System.Net.Http
Assembly:  System.Net.Http (in System.Net.Http.dll)

Syntax

'Declaration
Public Sub New ( _
    handler As HttpMessageHandler _
)
'Usage
Dim handler As HttpMessageHandler 

Dim instance As New HttpClient(handler)
public HttpClient(
    HttpMessageHandler handler
)
public:
HttpClient(
    HttpMessageHandler^ handler
)
new : 
        handler:HttpMessageHandler -> HttpClient
public function HttpClient(
    handler : HttpMessageHandler
)

Parameters

Remarks

For a complete example of using the HttpClient class, see Calling a Web API From a .NET Client

See Also

Reference

HttpClient Class

HttpClient Overload

System.Net.Http Namespace