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; }
System.Int32
|
Collection of refinement results
Dictionary<string, List<ISearchRefinementResult>> Refinements { get; }
Dictionary<System.String, PnP.Core.Model.SharePoint.List<ISearchRefinementResult>>
|
Collection of search results
List<Dictionary<string, object>> Rows { get; }
PnP.Core.Model.SharePoint.List<Dictionary<System.String, System.Object>>
|
Total rows that match the provided query
long TotalRows { get; }
System.Int64
|
Total rows, including duplicates, that match the provided query
long TotalRowsIncludingDuplicates { get; }
System.Int64
|