Table of Contents

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

int

Refinements

Collection of refinement results

Dictionary<string, List<ISearchRefinementResult>> Refinements { get; }

Property Value

Dictionary<string, List<ISearchRefinementResult>>

Rows

Collection of search results

List<Dictionary<string, object>> Rows { get; }

Property Value

List<Dictionary<string, object>>

TotalRows

Total rows that match the provided query

long TotalRows { get; }

Property Value

long

TotalRowsIncludingDuplicates

Total rows, including duplicates, that match the provided query

long TotalRowsIncludingDuplicates { get; }

Property Value

long