JobClient.QueryJobHistoryJsonAsync Method

 

Namespace:   Microsoft.Azure.Devices
Assembly:  Microsoft.Azure.Devices (in Microsoft.Azure.Devices.dll)

Overload List

Name Description
System_CAPS_pubmethod QueryJobHistoryJsonAsync(String)

Gets the jobs that meet the query criteria

System_CAPS_pubmethod QueryJobHistoryJsonAsync(String, CancellationToken)

Gets the jobs that meet the query criteria

See Also

JobClient Class
Microsoft.Azure.Devices Namespace

Return to top

JobClient.QueryJobHistoryJsonAsync Method (String)

Gets the jobs that meet the query criteria

Syntax

public abstract Task<JobQueryResult> QueryJobHistoryJsonAsync(
    string queryJson
)
public:
virtual Task<JobQueryResult^>^ QueryJobHistoryJsonAsync(
    String^ queryJson
) abstract

Parameters

Return Value

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

Results of the specified query

Return to top

JobClient.QueryJobHistoryJsonAsync Method (String, CancellationToken)

Gets the jobs that meet the query criteria

Syntax

public abstract Task<JobQueryResult> QueryJobHistoryJsonAsync(
    string queryJson,
    CancellationToken cancellationToken
)
public:
virtual Task<JobQueryResult^>^ QueryJobHistoryJsonAsync(
    String^ queryJson,
    CancellationToken cancellationToken
) abstract

Parameters

Return Value

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

Results of the specified query

Return to top