你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
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>