Share via


JobCollectionOperationsExtensions.GetAsync Method (IJobCollectionOperations, String, String)

 

Retreive a job collection.

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

Syntax

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

Parameters

  • cloudServiceName
    Type: System.String

    Required. Name of the cloud service.

  • jobCollectionName
    Type: System.String

    Required. Name of the job collection.

Return Value

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

The Get Job Collection operation response.

See Also

JobCollectionOperationsExtensions Class
Microsoft.WindowsAzure.Management.Scheduler Namespace

Return to top