PageResult Class

 

Represents a feed of entities that includes additional information that OData formats support.

Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)

Inheritance Hierarchy

System.Object
  System.Web.OData.PageResult
    System.Web.OData.PageResult<T>

Syntax

[DataContractAttribute]
public abstract class PageResult
[DataContractAttribute]
public ref class PageResult abstract 
[<AbstractClass>]
[<DataContractAttribute>]
type PageResult = class end
<DataContractAttribute>
Public MustInherit Class PageResult

Constructors

Name Description
System_CAPS_protmethod PageResult(Uri, Nullable<Int64>)

Initializes a new instance of the PageResult class.

Properties

Name Description
System_CAPS_pubproperty Count

Gets the total count of items in the feed.

System_CAPS_pubproperty NextPageLink

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

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

Currently limited to:

[list type="bullet"] [item] [description]The Count of all matching entities on the server (requested using $count=true).[/description] [/item] [item] [description]The NextLink to retrieve the next page of results (added if the server enforces Server Driven Paging).[/description] [/item] [/list]

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.OData Namespace

Return to top