IQuery.GetNextAsDeviceJobAsync Method

Definition

Overloads

GetNextAsDeviceJobAsync()

Retrieves the next paged result as DeviceJob objects

GetNextAsDeviceJobAsync(QueryOptions)

Retrieves the next paged result as DeviceJob objects

GetNextAsDeviceJobAsync()

Retrieves the next paged result as DeviceJob objects

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

Returns

List of DeviceJob objects

Applies to

GetNextAsDeviceJobAsync(QueryOptions)

Retrieves the next paged result as DeviceJob objects

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

Parameters

options
QueryOptions

Query options

Returns

An enumerable QueryResponse<T> object

Applies to