BatchManagementClient.GetAccountCreateOperationStatusAsync Method (String, CancellationToken)
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 Task<BatchAccountCreateResponse> GetAccountCreateOperationStatusAsync(
string operationStatusLink,
CancellationToken cancellationToken
)
public:
virtual Task<BatchAccountCreateResponse^>^ GetAccountCreateOperationStatusAsync(
String^ operationStatusLink,
CancellationToken cancellationToken
) sealed
abstract GetAccountCreateOperationStatusAsync :
operationStatusLink:string *
cancellationToken:CancellationToken -> Task<BatchAccountCreateResponse>
override GetAccountCreateOperationStatusAsync :
operationStatusLink:string *
cancellationToken:CancellationToken -> Task<BatchAccountCreateResponse>
Public Function GetAccountCreateOperationStatusAsync (
operationStatusLink As String,
cancellationToken As CancellationToken
) As Task(Of BatchAccountCreateResponse)
Parameters
operationStatusLink
Type: System.StringRequired. Location value returned by the BeginCreating operation.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<BatchAccountCreateResponse>
Values returned by the Create operation.
Implements
IBatchManagementClient.GetAccountCreateOperationStatusAsync(String, CancellationToken)
See Also
BatchManagementClient Class
Microsoft.Azure.Management.Batch Namespace
Return to top