Share via


ActivityOperationsExtensions.ListNextAsync Method (IActivityOperations, String)

 

Retrieve next list of activities in the module identified by module name. (see https://aka.ms/azureautomationsdk/activityoperations for more information)

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

Syntax

public static Task<ActivityListResponse> ListNextAsync(
    this IActivityOperations operations,
    string nextLink
)
public:
[ExtensionAttribute]
static Task<ActivityListResponse^>^ ListNextAsync(
    IActivityOperations^ operations,
    String^ nextLink
)
static member ListNextAsync : 
        operations:IActivityOperations *
        nextLink:string -> Task<ActivityListResponse>
<ExtensionAttribute>
Public Shared Function ListNextAsync (
    operations As IActivityOperations,
    nextLink As String
) As Task(Of ActivityListResponse)

Parameters

  • nextLink
    Type: System.String

    Required. The link to retrieve next set of items.

Return Value

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

The response model for the list activity operation.

See Also

ActivityOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top