ServiceClient class
建構函式
Service |
ServiceClient 建構函式 |
方法
send |
傳送使用提供的 OperationSpec 填入的 HTTP 要求。 |
send |
傳送提供的 HTTPRequest。 |
建構函式詳細資料
ServiceClient(ServiceClientCredentials | TokenCredential, ServiceClientOptions)
ServiceClient 建構函式
new ServiceClient(credentials?: ServiceClientCredentials | TokenCredential, 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(RequestPrepareOptions | WebResourceLike)
傳送提供的 HTTPRequest。
function sendRequest(options: RequestPrepareOptions | WebResourceLike): Promise<HttpOperationResponse>
參數
- options
傳回
Promise<HttpOperationResponse>