Initializes a new instance of the PageResult class.
Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.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.Uri- The 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.OData Namespace
Return to top