Share via


IScheduleOperations.GetAsync Method (String, String, CancellationToken)

 

Retrieve the schedule identified by schedule name. (see https://aka.ms/azureautomationsdk/scheduleoperations for more information)

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

Syntax

Task<ScheduleGetResponse> GetAsync(
    string automationAccount,
    string scheduleName,
    CancellationToken cancellationToken
)
Task<ScheduleGetResponse^>^ GetAsync(
    String^ automationAccount,
    String^ scheduleName,
    CancellationToken cancellationToken
)
abstract GetAsync : 
        automationAccount:string *
        scheduleName:string *
        cancellationToken:CancellationToken -> Task<ScheduleGetResponse>
Function GetAsync (
    automationAccount As String,
    scheduleName As String,
    cancellationToken As CancellationToken
) As Task(Of ScheduleGetResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

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

The response model for the get schedule operation.

See Also

IScheduleOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top