Share via


IVariableOperations.ListAsync Method (String, CancellationToken)

 

Retrieve a list of variables. (see https://aka.ms/azureautomationsdk/variableoperations for more information)

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

Syntax

Task<VariableListResponse> ListAsync(
    string automationAccount,
    CancellationToken cancellationToken
)
Task<VariableListResponse^>^ ListAsync(
    String^ automationAccount,
    CancellationToken cancellationToken
)
abstract ListAsync : 
        automationAccount:string *
        cancellationToken:CancellationToken -> Task<VariableListResponse>
Function ListAsync (
    automationAccount As String,
    cancellationToken As CancellationToken
) As Task(Of VariableListResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

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

The response model for the list variables operation.

See Also

IVariableOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top