ServiceClient<T> Constructors

Definition

Overloads

ServiceClient<T>()
ServiceClient<T>(DelegatingHandler[])
ServiceClient<T>(HttpClient, Boolean)
ServiceClient<T>(HttpClientHandler, DelegatingHandler[])

ServiceClient<T>()

protected ServiceClient ();
Protected Sub New ()

Applies to

ServiceClient<T>(DelegatingHandler[])

protected ServiceClient (params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)> : System.Net.Http.DelegatingHandler[] -> Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)>
Protected Sub New (ParamArray handlers As DelegatingHandler())

Parameters

handlers
DelegatingHandler[]

Applies to

ServiceClient<T>(HttpClient, Boolean)

protected ServiceClient (System.Net.Http.HttpClient httpClient, bool disposeHttpClient = true);
new Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)> : System.Net.Http.HttpClient * bool -> Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)>
Protected Sub New (httpClient As HttpClient, Optional disposeHttpClient As Boolean = true)

Parameters

httpClient
HttpClient
disposeHttpClient
Boolean

Applies to

ServiceClient<T>(HttpClientHandler, DelegatingHandler[])

protected ServiceClient (System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)> : System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Rest.ServiceClient<'T (requires 'T :> Microsoft.Rest.ServiceClient<'T>)>
Protected Sub New (rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())

Parameters

rootHandler
HttpClientHandler
handlers
DelegatingHandler[]

Applies to