JobClient.CreateQuery Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateQuery(Nullable<JobType>, Nullable<JobStatus>, Nullable<Int32>) |
Get IQuery through which job responses for specified jobType and jobStatus are retrieved page by page, and specify page size |
CreateQuery(Nullable<JobType>, Nullable<JobStatus>) |
Get IQuery through which job responses for specified jobType and jobStatus are retrieved page by page |
CreateQuery() |
Get IQuery through which job responses for all job types and statuses are retrieved page by page |
CreateQuery(Nullable<Int32>) |
Get IQuery through which job responses are retrieved page by page and specify page size |
CreateQuery(Nullable<JobType>, Nullable<JobStatus>, Nullable<Int32>)
Get IQuery through which job responses for specified jobType and jobStatus are retrieved page by page, and specify page size
public virtual Microsoft.Azure.Devices.IQuery CreateQuery (Microsoft.Azure.Devices.JobType? jobType, Microsoft.Azure.Devices.JobStatus? jobStatus, int? pageSize);
abstract member CreateQuery : Nullable<Microsoft.Azure.Devices.JobType> * Nullable<Microsoft.Azure.Devices.JobStatus> * Nullable<int> -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : Nullable<Microsoft.Azure.Devices.JobType> * Nullable<Microsoft.Azure.Devices.JobStatus> * Nullable<int> -> Microsoft.Azure.Devices.IQuery
Public Overridable Function CreateQuery (jobType As Nullable(Of JobType), jobStatus As Nullable(Of JobStatus), pageSize As Nullable(Of Integer)) As IQuery
Parameters
Returns
A query object to get results and next pages.
Applies to
CreateQuery(Nullable<JobType>, Nullable<JobStatus>)
Get IQuery through which job responses for specified jobType and jobStatus are retrieved page by page
public virtual Microsoft.Azure.Devices.IQuery CreateQuery (Microsoft.Azure.Devices.JobType? jobType, Microsoft.Azure.Devices.JobStatus? jobStatus);
abstract member CreateQuery : Nullable<Microsoft.Azure.Devices.JobType> * Nullable<Microsoft.Azure.Devices.JobStatus> -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : Nullable<Microsoft.Azure.Devices.JobType> * Nullable<Microsoft.Azure.Devices.JobStatus> -> Microsoft.Azure.Devices.IQuery
Public Overridable Function CreateQuery (jobType As Nullable(Of JobType), jobStatus As Nullable(Of JobStatus)) As IQuery
Parameters
Returns
A query object to get results and next pages.
Applies to
CreateQuery()
Get IQuery through which job responses for all job types and statuses are retrieved page by page
public virtual Microsoft.Azure.Devices.IQuery CreateQuery ();
abstract member CreateQuery : unit -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : unit -> Microsoft.Azure.Devices.IQuery
Public Overridable Function CreateQuery () As IQuery
Returns
A query object to get results and next pages.
Applies to
CreateQuery(Nullable<Int32>)
Get IQuery through which job responses are retrieved page by page and specify page size
public virtual Microsoft.Azure.Devices.IQuery CreateQuery (int? pageSize);
abstract member CreateQuery : Nullable<int> -> Microsoft.Azure.Devices.IQuery
override this.CreateQuery : Nullable<int> -> Microsoft.Azure.Devices.IQuery
Public Overridable Function CreateQuery (pageSize As Nullable(Of Integer)) As IQuery
Parameters
Returns
A query object to get results and next pages.
Applies to
Azure SDK for .NET