AutomationClient 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AutomationClient(DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(ServiceClientCredentials, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(HttpClient, Boolean) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(HttpClientHandler, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(Uri, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(ServiceClientCredentials, HttpClient, Boolean) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(ServiceClientCredentials, HttpClientHandler, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(Uri, ServiceClientCredentials, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(Uri, HttpClientHandler, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(Uri, ServiceClientCredentials, HttpClientHandler, DelegatingHandler[]) |
初始化 AutomationClient 類別的新實例。 |
AutomationClient(DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
protected AutomationClient (params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Protected Sub New (ParamArray handlers As DelegatingHandler())
參數
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
適用於
AutomationClient(ServiceClientCredentials, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
public AutomationClient (Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Public Sub New (credentials As ServiceClientCredentials, ParamArray handlers As DelegatingHandler())
參數
- credentials
- ServiceClientCredentials
必要。 用戶端連線至 Azure 所需的認證。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(HttpClient, Boolean)
初始化 AutomationClient 類別的新實例。
protected AutomationClient (System.Net.Http.HttpClient httpClient, bool disposeHttpClient);
new Microsoft.Azure.Management.Automation.AutomationClient : System.Net.Http.HttpClient * bool -> Microsoft.Azure.Management.Automation.AutomationClient
Protected Sub New (httpClient As HttpClient, disposeHttpClient As Boolean)
參數
- httpClient
- HttpClient
要使用的 HttpClient
- disposeHttpClient
- Boolean
True:會在呼叫 AutomationClient.Dispose () 時處置提供的 HTTPClient。 False:不會處置提供的 HTTPClient
適用於
AutomationClient(HttpClientHandler, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
protected AutomationClient (System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Protected Sub New (rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())
參數
- rootHandler
- HttpClientHandler
選擇性。 用來處理 HTTP 傳輸的 HTTP 用戶端處理常式。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
適用於
AutomationClient(Uri, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
protected AutomationClient (Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Uri * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Protected Sub New (baseUri As Uri, ParamArray handlers As DelegatingHandler())
參數
- baseUri
- Uri
選擇性。 服務的基底 URI。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(ServiceClientCredentials, HttpClient, Boolean)
初始化 AutomationClient 類別的新實例。
public AutomationClient (Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClient httpClient, bool disposeHttpClient);
new Microsoft.Azure.Management.Automation.AutomationClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClient * bool -> Microsoft.Azure.Management.Automation.AutomationClient
Public Sub New (credentials As ServiceClientCredentials, httpClient As HttpClient, disposeHttpClient As Boolean)
參數
- credentials
- ServiceClientCredentials
必要。 用戶端連線至 Azure 所需的認證。
- httpClient
- HttpClient
要使用的 HttpClient
- disposeHttpClient
- Boolean
True:會在呼叫 AutomationClient.Dispose () 時處置提供的 HTTPClient。 False:不會處置提供的 HTTPClient
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(ServiceClientCredentials, HttpClientHandler, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
public AutomationClient (Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Public Sub New (credentials As ServiceClientCredentials, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())
參數
- credentials
- ServiceClientCredentials
必要。 用戶端連線至 Azure 所需的認證。
- rootHandler
- HttpClientHandler
選擇性。 用來處理 HTTP 傳輸的 HTTP 用戶端處理常式。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(Uri, ServiceClientCredentials, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
public AutomationClient (Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Uri * Microsoft.Rest.ServiceClientCredentials * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Public Sub New (baseUri As Uri, credentials As ServiceClientCredentials, ParamArray handlers As DelegatingHandler())
參數
- baseUri
- Uri
選擇性。 服務的基底 URI。
- credentials
- ServiceClientCredentials
必要。 用戶端連線至 Azure 所需的認證。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(Uri, HttpClientHandler, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
protected AutomationClient (Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Uri * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Protected Sub New (baseUri As Uri, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())
參數
- baseUri
- Uri
選擇性。 服務的基底 URI。
- rootHandler
- HttpClientHandler
選擇性。 用來處理 HTTP 傳輸的 HTTP 用戶端處理常式。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回
適用於
AutomationClient(Uri, ServiceClientCredentials, HttpClientHandler, DelegatingHandler[])
初始化 AutomationClient 類別的新實例。
public AutomationClient (Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers);
new Microsoft.Azure.Management.Automation.AutomationClient : Uri * Microsoft.Rest.ServiceClientCredentials * System.Net.Http.HttpClientHandler * System.Net.Http.DelegatingHandler[] -> Microsoft.Azure.Management.Automation.AutomationClient
Public Sub New (baseUri As Uri, credentials As ServiceClientCredentials, rootHandler As HttpClientHandler, ParamArray handlers As DelegatingHandler())
參數
- baseUri
- Uri
選擇性。 服務的基底 URI。
- credentials
- ServiceClientCredentials
必要。 用戶端連線至 Azure 所需的認證。
- rootHandler
- HttpClientHandler
選擇性。 用來處理 HTTP 傳輸的 HTTP 用戶端處理常式。
- handlers
- DelegatingHandler[]
選擇性。 要新增至 HTTP 用戶端管線的委派處理常式。
例外狀況
當必要參數為 null 時擲回