PageResult<T>(IEnumerable<T>, Uri, Nullable<Int64>) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a partial set of results - used when server driven paging is enabled.
public PageResult (System.Collections.Generic.IEnumerable<T> items, Uri nextPageLink, long? count);
new Microsoft.AspNet.OData.PageResult<'T> : seq<'T> * Uri * Nullable<int64> -> Microsoft.AspNet.OData.PageResult<'T>
Public Sub New (items As IEnumerable(Of T), nextPageLink As Uri, count As Nullable(Of Long))
Parameters
- items
- IEnumerable<T>
The subset of matching results that should be serialized in this page.
- nextPageLink
- Uri
A link to the next page of matching results (if more exists).
A total count of matching results so clients can know the number of matches on the server.