ManagementClientExtensions.GetOperationStatus Method (IManagementClient, String)
Returns the status of the specified operation.
Namespace: Microsoft.WindowsAzure.Management
Assembly: Microsoft.WindowsAzure.Management (in Microsoft.WindowsAzure.Management.dll)
Syntax
public static OperationStatusResponse GetOperationStatus(
this IManagementClient operations,
string requestId
)
public:
[ExtensionAttribute]
static OperationStatusResponse^ GetOperationStatus(
IManagementClient^ operations,
String^ requestId
)
static member GetOperationStatus :
operations:IManagementClient *
requestId:string -> OperationStatusResponse
<ExtensionAttribute>
Public Shared Function GetOperationStatus (
operations As IManagementClient,
requestId As String
) As OperationStatusResponse
Parameters
operations
Type: Microsoft.WindowsAzure.Management.IManagementClientThe IManagementClient object that specifies the operations.
requestId
Type: System.StringThe request ID of the asynchronous request. The request ID is returned in the x-ms-request-id response header for every request.
Return Value
Type: Microsoft.Azure.OperationStatusResponse
An T:Microsoft.WindowsAzure.Management.Models.OperationStatusResponse object that contains the status of the specified asynchronous operation.
Remarks
After calling an asynchronous operation, you can use this method to determine whether the operation has succeeded, failed, or is still in progress. If the asynchronous operation succeeds, the response includes the HTTP status code for the successful request. If the asynchronous operation failed, the response includes the HTTP status code for the failed request, and also includes error information about the failure.
For more information about obtaining the status of an operation, see Get Operation Status.
See Also
ManagementClientExtensions Class
Microsoft.WindowsAzure.Management Namespace
Return to top