ServiceClient class
ServiceClient 會傳送服務要求並接收回應。
建構函式
Service |
ServiceClient 建構函式 |
方法
send |
傳送使用提供的 OperationSpec 填入的 HTTP 要求。 |
send |
傳送提供的 HTTPRequest。 |
建構函式詳細資料
ServiceClient(TokenCredential | ServiceClientCredentials, ServiceClientOptions)
ServiceClient 建構函式
new ServiceClient(credentials?: TokenCredential | ServiceClientCredentials, options?: ServiceClientOptions)
參數
- credentials
用於向服務進行驗證的認證。
- options
- ServiceClientOptions
管理用戶端行為的服務用戶端選項。
方法詳細資料
sendOperationRequest(OperationArguments, OperationSpec, ServiceCallback<any>)
傳送使用提供的 OperationSpec 填入的 HTTP 要求。
function sendOperationRequest(operationArguments: OperationArguments, operationSpec: OperationSpec, callback?: ServiceCallback<any>): Promise<RestResponse>
參數
- operationArguments
- OperationArguments
HTTP 要求範本化值的引數會從 中填入。
- operationSpec
- OperationSpec
要用來填入 HTTPRequest 的 OperationSpec。
- callback
-
ServiceCallback<any>
收到回應時要呼叫的回呼。
傳回
Promise<RestResponse>
sendRequest(WebResourceLike | RequestPrepareOptions)
傳送提供的 HTTPRequest。
function sendRequest(options: WebResourceLike | RequestPrepareOptions): Promise<HttpOperationResponse>
參數
- options
傳回
Promise<HttpOperationResponse>