Table of Contents

Class PageResult

Namespace
System.Web.Http.OData
Assembly
System.Web.Http.OData.dll

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 Uri

The 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?

Gets the link for the next page of items in the feed.

[DataMember]
public Uri NextPageLink { get; }

Property Value

Uri