SearchResultsPage<T> Class
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.
A page of SearchResult<T>s returned from GetResultsAsync()'s AsPages(String, Nullable<Int32>) method.
public class SearchResultsPage<T> : Azure.Page<Azure.Search.Documents.Models.SearchResult<T>>
type SearchResultsPage<'T> = class
inherit Page<SearchResult<'T>>
Public Class SearchResultsPage(Of T)
Inherits Page(Of SearchResult(Of T))
Type Parameters
- T
The .NET type that maps to the index schema. Instances of this type can be retrieved as documents from the index.
- Inheritance
Properties
ContinuationToken |
Gets the continuation token used to request the next Page<T>. The continuation token may be null or empty when there are no more pages. |
Coverage |
A value indicating the percentage of the index that was included in the query, or null if MinimumCoverage was not specified in the request. |
Facets |
The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions via Facets. |
SemanticSearch |
Semantic search results from an index. |
TotalCount |
The total count of results found by the search operation, or null if the count was not requested via IncludeTotalCount. If present, the count may be greater than the number of results in this response. This can happen if you use the Size or Skip parameters, or if Azure Cognitive Search can't return all the requested documents in a single Search response. |
Values |
Gets the values in this Page<T>. |
Methods
GetRawResponse() |
Applies to
Azure SDK for .NET