Class PageResult
Represents a feed of entities that includes additional information that OData formats support.
[DataContract]
public abstract class PageResult
- Inheritance
-
PageResult
- Derived
- Inherited Members
Constructors
PageResult(Uri, long?)
Initializes a new instance of the PageResult class.
protected PageResult(Uri nextPageLink, long? count)
Parameters
nextPageLink
UriThe link for the next page of items in the feed.
count
long?The total count of items in the feed.
Properties
Count
Gets the total count of items in the feed.
[DataMember]
public long? Count { get; }
Property Value
- long?
NextPageLink
Gets the link for the next page of items in the feed.
[DataMember]
public Uri NextPageLink { get; }
Property Value
- Uri