IActivityOperations.ListAsync Method (String, String, CancellationToken)
Retrieve a 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
Task<ActivityListResponse> ListAsync(
string automationAccount,
string moduleName,
CancellationToken cancellationToken
)
Task<ActivityListResponse^>^ ListAsync(
String^ automationAccount,
String^ moduleName,
CancellationToken cancellationToken
)
abstract ListAsync :
automationAccount:string *
moduleName:string *
cancellationToken:CancellationToken -> Task<ActivityListResponse>
Function ListAsync (
automationAccount As String,
moduleName As String,
cancellationToken As CancellationToken
) As Task(Of ActivityListResponse)
Parameters
automationAccount
Type: System.StringThe automation account name.
moduleName
Type: System.StringThe name of module.
cancellationToken
Type: System.Threading.CancellationTokenCancellation token.
Return Value
Type: System.Threading.Tasks.Task<ActivityListResponse>
The response model for the list activity operation.
See Also
IActivityOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace
Return to top