IHostedServiceOperations.BeginDeletingAllAsync Method (String, CancellationToken)
The DeleteAll Hosted Service operation deletes the specified cloud service as well as operating system disk, attached data disks, and the source blobs for the disks from storage from Microsoft Azure. (see 'https://msdn.microsoft.com/library/windowsazure/gg441305.aspx' for more information)
Namespace: Microsoft.WindowsAzure.Management.Compute
Assembly: Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)
Syntax
Task<AzureOperationResponse> BeginDeletingAllAsync(
string serviceName,
CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ BeginDeletingAllAsync(
String^ serviceName,
CancellationToken cancellationToken
)
abstract BeginDeletingAllAsync :
serviceName:string *
cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function BeginDeletingAllAsync (
serviceName As String,
cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)
Parameters
serviceName
Type: System.StringThe name of the cloud service.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<AzureOperationResponse>
A standard service response including an HTTP status code and request ID.
See Also
IHostedServiceOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace
Return to top