Interface ISearchResult
- Namespace
- PnP.Core.Model.SharePoint
- Assembly
- PnP.Core.dll
Result of search query
public interface ISearchResult
Properties
ElapsedTime
Time in milliseconds the search query took server side
int ElapsedTime { get; }
Property Value
Refinements
Collection of refinement results
Dictionary<string, List<ISearchRefinementResult>> Refinements { get; }
Property Value
Rows
Collection of search results
List<Dictionary<string, object>> Rows { get; }
Property Value
TotalRows
Total rows that match the provided query
long TotalRows { get; }
Property Value
TotalRowsIncludingDuplicates
Total rows, including duplicates, that match the provided query
long TotalRowsIncludingDuplicates { get; }