Class PageResults
Represents the query results for one page.
Inheritance
System.Object
PageResults
Namespace: PSPDFKitFoundation.Search
Assembly: PSPDFKitFoundation.dll
Syntax
public sealed class PageResults
Constructors
PageResults(String, Int32, IList<Result>)
Constructs a PageResult.
Declaration
public PageResults(string uid, int pageIndex, IList<Result> results)
Parameters
Type | Name | Description |
---|---|---|
System.String | uid | The Unique ID of the search. |
System.Int32 | pageIndex | The page index that these results were found on. |
System.Collections.Generic.IList<Result> | results | The results on the page. |
Properties
PageIndex
The page index that these results were found on.
Declaration
public int PageIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Results
The results on the page.
Declaration
public IList<Result> Results { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<Result> |
Uid
The Unique ID of the search.
Declaration
public string Uid { get; }
Property Value
Type | Description |
---|---|
System.String |