Share via


ITestJobOperations.StopAsync Method (String, String, CancellationToken)

 

Stop the test job. (see https://aka.ms/azureautomationsdk/testjoboperations for more information)

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

Syntax

Task<AzureOperationResponse> StopAsync(
    string automationAccount,
    string runbookName,
    CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ StopAsync(
    String^ automationAccount,
    String^ runbookName,
    CancellationToken cancellationToken
)
abstract StopAsync : 
        automationAccount:string *
        runbookName:string *
        cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function StopAsync (
    automationAccount As String,
    runbookName As String,
    cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

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

A standard service response including an HTTP status code and request ID.

See Also

ITestJobOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top