Share via


JobCollectionOperationsExtensions.BeginDeletingAsync Method (IJobCollectionOperations, String, String)

 

Deletes a job collection.

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

Syntax

public static Task<AzureOperationResponse> BeginDeletingAsync(
    this IJobCollectionOperations operations,
    string cloudServiceName,
    string jobCollectionName
)
public:
[ExtensionAttribute]
static Task<AzureOperationResponse^>^ BeginDeletingAsync(
    IJobCollectionOperations^ operations,
    String^ cloudServiceName,
    String^ jobCollectionName
)
static member BeginDeletingAsync : 
        operations:IJobCollectionOperations *
        cloudServiceName:string *
        jobCollectionName:string -> Task<AzureOperationResponse>
<ExtensionAttribute>
Public Shared Function BeginDeletingAsync (
    operations As IJobCollectionOperations,
    cloudServiceName As String,
    jobCollectionName As String
) As Task(Of AzureOperationResponse)

Parameters

  • cloudServiceName
    Type: System.String

    Required. The name of the cloud service.

  • jobCollectionName
    Type: System.String

    Required. The name of the job collection to delete.

Return Value

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

A standard service response including an HTTP status code and request ID.

See Also

JobCollectionOperationsExtensions Class
Microsoft.WindowsAzure.Management.Scheduler Namespace

Return to top