PageResult Constructor (Uri, Nullable<Int64>)
Initializes a new instance of the PageResult class.
Namespace: System.Web.Http.OData
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
protected PageResult(
Uri nextPageLink,
Nullable<long> count
)
protected:
PageResult(
Uri^ nextPageLink,
Nullable<long long> count
)
new :
nextPageLink:Uri *
count:Nullable<int64> -> PageResult
Protected Sub New (
nextPageLink As Uri,
count As Nullable(Of Long)
)
Parameters
nextPageLink
Type: System.UriThe link for the next page of items in the feed.
count
Type: System.Nullable<Int64>The total count of items in the feed.
See Also
PageResult Class
System.Web.Http.OData Namespace
Return to top