DocumentsOperationsExtensions.ContinueSearch メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ContinueSearch(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions)
検索インデックスから検索結果の次のページを取得します。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents
public static Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document> ContinueSearch (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.SearchContinuationToken continuationToken, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member ContinueSearch : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.SearchContinuationToken * Microsoft.Azure.Search.Models.SearchRequestOptions -> Microsoft.Azure.Search.Models.DocumentSearchResult<Microsoft.Azure.Search.Models.Document>
<Extension()>
Public Function ContinueSearch (operations As IDocumentsOperations, continuationToken As SearchContinuationToken, Optional searchRequestOptions As SearchRequestOptions = Nothing) As DocumentSearchResult(Of Document)
パラメーター
- operations
- IDocumentsOperations
この拡張メソッドの操作グループ。
- continuationToken
- SearchContinuationToken
インデックスから検索結果の次のページをフェッチするために必要な状態をカプセル化します。
- searchRequestOptions
- SearchRequestOptions
操作の追加パラメーター
戻り値
クエリに一致するドキュメントを含む応答。
注釈
ContinueSearch、ContinueSearchAsync、ContinueSearchWithHttpMessagesAsync メソッドの非ジェネリック オーバーロードは、応答ペイロード内の JSON 型を .NET 型にマップするためのベスト エフォート試行を行います。 詳細については、「 GetWithHttpMessagesAsync(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken) 」を参照してください。
Azure Cognitive Searchすべての結果を 1 つの応答に含めることができない場合、返される応答には、ContinueSearch に渡してより多くの結果を取得できる継続トークンが含まれます。 詳細については、「 DocumentSearchResult.ContinuationToken
」を参照してください。
このメソッドは、検索結果のページングを実装するためのものではありません。 メソッドへの パラメーターと Skip
パラメーターを使用してTop
ページングをSearch
実装できます。
適用対象
ContinueSearch<T>(IDocumentsOperations, SearchContinuationToken, SearchRequestOptions)
検索インデックスから検索結果の次のページを取得します。 https://docs.microsoft.com/rest/api/searchservice/Search-Documents
public static Microsoft.Azure.Search.Models.DocumentSearchResult<T> ContinueSearch<T> (this Microsoft.Azure.Search.IDocumentsOperations operations, Microsoft.Azure.Search.Models.SearchContinuationToken continuationToken, Microsoft.Azure.Search.Models.SearchRequestOptions searchRequestOptions = default);
static member ContinueSearch : Microsoft.Azure.Search.IDocumentsOperations * Microsoft.Azure.Search.Models.SearchContinuationToken * Microsoft.Azure.Search.Models.SearchRequestOptions -> Microsoft.Azure.Search.Models.DocumentSearchResult<'T>
<Extension()>
Public Function ContinueSearch(Of T) (operations As IDocumentsOperations, continuationToken As SearchContinuationToken, Optional searchRequestOptions As SearchRequestOptions = Nothing) As DocumentSearchResult(Of T)
型パラメーター
- T
インデックス スキーマにマッピングされる CLR タイプ。 この型のインスタンスは、インデックスからドキュメントとして取得できます。
パラメーター
- operations
- IDocumentsOperations
この拡張メソッドの操作グループ。
- continuationToken
- SearchContinuationToken
インデックスから検索結果の次のページをフェッチするために必要な状態をカプセル化します。
- searchRequestOptions
- SearchRequestOptions
操作の追加パラメーター
戻り値
クエリに一致するドキュメントを含む応答。
注釈
ContinueSearch、ContinueSearchAsync、および ContinueSearchWithHttpMessagesAsync メソッドのジェネリック オーバーロードでは、型パラメーター T を使用した .NET 型への検索フィールド型のマッピングがサポートされています。型マッピングの詳細については、以下を参照してください GetWithHttpMessagesAsync<T>(String, IEnumerable<String>, SearchRequestOptions, Dictionary<String,List<String>>, CancellationToken) 。
Azure Cognitive Searchすべての結果を 1 つの応答に含めることができない場合、返される応答には、ContinueSearch に渡してより多くの結果を取得できる継続トークンが含まれます。 詳細については、「 DocumentSearchResult.ContinuationToken
」を参照してください。
このメソッドは、検索結果のページングを実装するためのものではありません。 メソッドへの パラメーターと Skip
パラメーターを使用してTop
ページングをSearch
実装できます。
適用対象
Azure SDK for .NET