DocumentSearchResult<T> コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DocumentSearchResult クラスの新しいインスタンスを初期化します。 このコンストラクターは、このクラスのプロパティは不変であるため、テスト目的で使用することを目的としています。
public DocumentSearchResult (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.SearchResult<T>> results, long? count, double? coverage, System.Collections.Generic.IDictionary<string,System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FacetResult>> facets, Microsoft.Azure.Search.Models.SearchContinuationToken continuationToken);
new Microsoft.Azure.Search.Models.DocumentSearchResult<'T> : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.SearchResult<'T>> * Nullable<int64> * Nullable<double> * System.Collections.Generic.IDictionary<string, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.FacetResult>> * Microsoft.Azure.Search.Models.SearchContinuationToken -> Microsoft.Azure.Search.Models.DocumentSearchResult<'T>
Public Sub New (results As IList(Of SearchResult(Of T)), count As Nullable(Of Long), coverage As Nullable(Of Double), facets As IDictionary(Of String, IList(Of FacetResult)), continuationToken As SearchContinuationToken)
パラメーター
- results
- IList<SearchResult<T>>
クエリによって返される結果のシーケンス。
クエリに含まれていたインデックスの割合を示す値。MinimumCoverage が に SearchParameters
設定されていない場合は null。
- facets
- IDictionary<String,IList<FacetResult>>
検索操作のファセット クエリの結果。クエリにファセット式が含まれていない場合は null。
- continuationToken
- SearchContinuationToken
検索結果のフェッチを続行するために使用される継続トークン。 これは、Azure Cognitive Searchが 1 つの応答で検索要求を満たすことができない場合に必要です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET