IAutomationManagementClient.GetOperationStatusAsync 方法 (String, CancellationToken)
获取操作状态操作将返回 thespecified 操作的状态。 调用异步操作后,可调用“获取操作状态”以确定操作已成功、失败还是仍在进行中。 (请参阅 https://msdn.microsoft.com/en-us/library/windowsazure/ee460783.aspx 有关详细信息)
命名空间: Microsoft.WindowsAzure.Management.Automation
程序集: Microsoft.WindowsAzure.Management.Automation(Microsoft.WindowsAzure.Management.Automation.dll 中)
语法
Task<LongRunningOperationStatusResponse> GetOperationStatusAsync(
string requestId,
CancellationToken cancellationToken
)
Task<LongRunningOperationStatusResponse^>^ GetOperationStatusAsync(
String^ requestId,
CancellationToken cancellationToken
)
abstract GetOperationStatusAsync :
requestId:string *
cancellationToken:CancellationToken -> Task<LongRunningOperationStatusResponse>
Function GetOperationStatusAsync (
requestId As String,
cancellationToken As CancellationToken
) As Task(Of LongRunningOperationStatusResponse)
参数
requestId
Type: System.String您想要跟踪请求的请求 ID。 为每个请求的 x ms 请求 id 响应标头中返回的请求 ID。
cancellationToken
Type: System.Threading.CancellationToken取消标记。
返回值
Type: System.Threading.Tasks.Task<LongRunningOperationStatusResponse>
响应正文包含指定的异步操作,指示它是已成功、 正在进行,还是已失败的状态。 请注意此状态为获取操作状态操作本身返回的 HTTP 状态代码不同。 如果异步操作成功,则响应正文包含成功请求的 HTTP 状态代码。 如果异步操作失败,则响应正文包含失败请求的 HTTP 状态代码,还包含关于失败的错误信息。
请参阅
IAutomationManagementClient 接口
Microsoft.WindowsAzure.Management.Automation 命名空间
返回页首