BatchManagementClientExtensions.GetAccountCreateOperationStatusAsync Method (IBatchManagementClient, String)

 

The Get Account Create Operation Status operation returns the status of the account creation operation. After calling an asynchronous operation, you can call this method to determine whether the operation has succeeded, failed, or is still in progress.

Namespace:   Microsoft.Azure.Management.Batch
Assembly:  Microsoft.Azure.Management.Batch (in Microsoft.Azure.Management.Batch.dll)

Syntax

public static Task<BatchAccountCreateResponse> GetAccountCreateOperationStatusAsync(
    this IBatchManagementClient operations,
    string operationStatusLink
)
public:
[ExtensionAttribute]
static Task<BatchAccountCreateResponse^>^ GetAccountCreateOperationStatusAsync(
    IBatchManagementClient^ operations,
    String^ operationStatusLink
)
static member GetAccountCreateOperationStatusAsync : 
        operations:IBatchManagementClient *
        operationStatusLink:string -> Task<BatchAccountCreateResponse>
<ExtensionAttribute>
Public Shared Function GetAccountCreateOperationStatusAsync (
    operations As IBatchManagementClient,
    operationStatusLink As String
) As Task(Of BatchAccountCreateResponse)

Parameters

  • operationStatusLink
    Type: System.String

    Required. Location value returned by the BeginCreating operation.

Return Value

Type: System.Threading.Tasks.Task<BatchAccountCreateResponse>

Values returned by the Create operation.

See Also

BatchManagementClientExtensions Class
Microsoft.Azure.Management.Batch Namespace

Return to top