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