Share via


IRunbookOperations.ListNextAsync Method (String, CancellationToken)

 

Retrieve next list of runbooks. (see https://aka.ms/azureautomationsdk/runbookoperations for more information)

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

Syntax

Task<RunbookListResponse> ListNextAsync(
    string nextLink,
    CancellationToken cancellationToken
)
Task<RunbookListResponse^>^ ListNextAsync(
    String^ nextLink,
    CancellationToken cancellationToken
)
abstract ListNextAsync : 
        nextLink:string *
        cancellationToken:CancellationToken -> Task<RunbookListResponse>
Function ListNextAsync (
    nextLink As String,
    cancellationToken As CancellationToken
) As Task(Of RunbookListResponse)

Parameters

  • nextLink
    Type: System.String

    The link to retrieve next set of items.

Return Value

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

The response model for the list runbook operation.

See Also

IRunbookOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top