IQuery.GetNextAsJobResponseAsync Method

Definition

Overloads

GetNextAsJobResponseAsync()

Retrieves the next paged result as JobResponse objects

GetNextAsJobResponseAsync(QueryOptions)

Retrieves the next paged result as JobResponse objects

GetNextAsJobResponseAsync()

Retrieves the next paged result as JobResponse objects

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Devices.JobResponse>> GetNextAsJobResponseAsync ();
abstract member GetNextAsJobResponseAsync : unit -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Devices.JobResponse>>
Public Function GetNextAsJobResponseAsync () As Task(Of IEnumerable(Of JobResponse))

Returns

List of JobResponse objects

Applies to

GetNextAsJobResponseAsync(QueryOptions)

Retrieves the next paged result as JobResponse objects

public System.Threading.Tasks.Task<Microsoft.Azure.Devices.QueryResponse<Microsoft.Azure.Devices.JobResponse>> GetNextAsJobResponseAsync (Microsoft.Azure.Devices.QueryOptions options);
abstract member GetNextAsJobResponseAsync : Microsoft.Azure.Devices.QueryOptions -> System.Threading.Tasks.Task<Microsoft.Azure.Devices.QueryResponse<Microsoft.Azure.Devices.JobResponse>>
Public Function GetNextAsJobResponseAsync (options As QueryOptions) As Task(Of QueryResponse(Of JobResponse))

Parameters

options
QueryOptions

Query options

Returns

An enumerable QueryResponse<T> object

Applies to