次の方法で共有


QueryResponse コンストラクター

定義

オーバーロード

QueryResponse()

QueryResponse クラスの新しいインスタンスを初期化します。

QueryResponse(Int64, Int64, ResultTruncated, Object, String, IList<Facet>)

QueryResponse クラスの新しいインスタンスを初期化します。

QueryResponse()

QueryResponse クラスの新しいインスタンスを初期化します。

public QueryResponse ();
Public Sub New ()

適用対象

QueryResponse(Int64, Int64, ResultTruncated, Object, String, IList<Facet>)

QueryResponse クラスの新しいインスタンスを初期化します。

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)

パラメーター

totalRecords
Int64

クエリに一致するレコードの合計数。

count
Int64

現在の応答で返されるレコードの数。 ページングの場合、これは現在のページ内のレコードの数です。

resultTruncated
ResultTruncated

クエリ結果が切り捨てられるかどうかを示します。 指定できる値は、'true'、'false' です。

data
Object

JObject 配列またはテーブル形式のクエリ出力。

skipToken
String

存在する場合、値を後続のクエリ呼び出し (現在の要求で使用されているのと同じクエリとスコープと共に) に渡して、データの次のページを取得できます。

facets
IList<Facet>

クエリ ファセット。

適用対象