Partilhar via


AnalyticsPurviewDataMapModelFactory.QueryResult Method

Definition

Initializes a new instance of QueryResult.

public static Azure.Analytics.Purview.DataMap.QueryResult QueryResult (int? searchCount = default, bool? searchCountApproximate = default, string continuationToken = default, Azure.Analytics.Purview.DataMap.SearchFacetResultValue searchFacets = default, System.Collections.Generic.IEnumerable<Azure.Analytics.Purview.DataMap.SearchResultValue> value = default);
static member QueryResult : Nullable<int> * Nullable<bool> * string * Azure.Analytics.Purview.DataMap.SearchFacetResultValue * seq<Azure.Analytics.Purview.DataMap.SearchResultValue> -> Azure.Analytics.Purview.DataMap.QueryResult
Public Shared Function QueryResult (Optional searchCount As Nullable(Of Integer) = Nothing, Optional searchCountApproximate As Nullable(Of Boolean) = Nothing, Optional continuationToken As String = Nothing, Optional searchFacets As SearchFacetResultValue = Nothing, Optional value As IEnumerable(Of SearchResultValue) = Nothing) As QueryResult

Parameters

searchCount
Nullable<Int32>

The total number of search results (not the number of documents in a single page).

searchCountApproximate
Nullable<Boolean>

'True' if the '@search.count' is an approximate value and vise versa.

continuationToken
String

The token used to get next batch of data. Absent if there's no more data.

searchFacets
SearchFacetResultValue

A facet list that consists of index fields assetType ,classification, contactId, and label. When the facet is specified in the request, the value of the facet is returned as an element of @search.facets.

value
IEnumerable<SearchResultValue>

Search result value.

Returns

A new QueryResult instance for mocking.

Applies to