IJobStreamOperations.GetAsync Method (String, Guid, String, CancellationToken)

 

Retrieve the job stream identified by job stream id. (see https://aka.ms/azureautomationsdk/jobstreamoperations for more information)

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

Syntax

Task<JobStreamGetResponse> GetAsync(
    string automationAccount,
    Guid jobId,
    string jobStreamId,
    CancellationToken cancellationToken
)
Task<JobStreamGetResponse^>^ GetAsync(
    String^ automationAccount,
    Guid jobId,
    String^ jobStreamId,
    CancellationToken cancellationToken
)
abstract GetAsync : 
        automationAccount:string *
        jobId:Guid *
        jobStreamId:string *
        cancellationToken:CancellationToken -> Task<JobStreamGetResponse>
Function GetAsync (
    automationAccount As String,
    jobId As Guid,
    jobStreamId As String,
    cancellationToken As CancellationToken
) As Task(Of JobStreamGetResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

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

The response model for the get job stream operation.

See Also

IJobStreamOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top