Share via


SearchModelFactory.SearchResultsPage<T>(SearchResults<T>) Method

Definition

Initializes a new instance of SearchResultsPage.

public static Azure.Search.Documents.Models.SearchResultsPage<T> SearchResultsPage<T> (Azure.Search.Documents.Models.SearchResults<T> results);
static member SearchResultsPage : Azure.Search.Documents.Models.SearchResults<'T> -> Azure.Search.Documents.Models.SearchResultsPage<'T>
Public Shared Function SearchResultsPage(Of T) (results As SearchResults(Of T)) As SearchResultsPage(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.

Parameters

results
SearchResults<T>

The search results for this page.

Returns

A new SearchResultsPage instance for mocking.

Applies to