QueryResponse Constructors
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
QueryResponse() |
Initializes a new instance of the QueryResponse class. |
QueryResponse(Int64, Int64, ResultTruncated, Object, String, IList<Facet>) |
Initializes a new instance of the QueryResponse class. |
QueryResponse()
Initializes a new instance of the QueryResponse class.
public QueryResponse ();
Public Sub New ()
Applies to
QueryResponse(Int64, Int64, ResultTruncated, Object, String, IList<Facet>)
Initializes a new instance of the QueryResponse class.
public QueryResponse (long totalRecords, long count, Microsoft.Azure.Management.ResourceGraph.Models.ResultTruncated resultTruncated, object data, string skipToken = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.Facet> facets = default);
new Microsoft.Azure.Management.ResourceGraph.Models.QueryResponse : int64 * int64 * Microsoft.Azure.Management.ResourceGraph.Models.ResultTruncated * obj * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.Facet> -> Microsoft.Azure.Management.ResourceGraph.Models.QueryResponse
Public Sub New (totalRecords As Long, count As Long, resultTruncated As ResultTruncated, data As Object, Optional skipToken As String = Nothing, Optional facets As IList(Of Facet) = Nothing)
Parameters
- totalRecords
- Int64
Number of total records matching the query.
- count
- Int64
Number of records returned in the current response. In the case of paging, this is the number of records in the current page.
- resultTruncated
- ResultTruncated
Indicates whether the query results are truncated. Possible values include: 'true', 'false'
- data
- Object
Query output in JObject array or Table format.
- skipToken
- String
When present, the value can be passed to a subsequent query call (together with the same query and scopes used in the current request) to retrieve the next page of data.
Applies to
Azure SDK for .NET