Share via


IAffinityGroupOperations.DeleteAsync Method (String, CancellationToken)

 

Asynchronously deletes an affinity group from the specified subscription.

Namespace:   Microsoft.WindowsAzure.Management
Assembly:  Microsoft.WindowsAzure.Management (in Microsoft.WindowsAzure.Management.dll)

Syntax

Task<AzureOperationResponse> DeleteAsync(
    string affinityGroupName,
    CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ DeleteAsync(
    String^ affinityGroupName,
    CancellationToken cancellationToken
)
abstract DeleteAsync : 
        affinityGroupName:string *
        cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function DeleteAsync (
    affinityGroupName As String,
    cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)

Parameters

  • affinityGroupName
    Type: System.String

    The name of the affinity group to delete.

Return Value

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

An OperationResponse object that includes an HTTP status code and request ID.

Remarks

Before you delete an affinity group, you must modify or delete any resources that currently use it. An affinity group cannot be deleted as long as it is associated with any resources.

For more information about deleting affinity groups, see the following resources:

See Also

IAffinityGroupOperations Interface
Microsoft.WindowsAzure.Management Namespace

Return to top