PageResult<T> Class

 

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

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

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

generic<typename T>
[JsonObjectAttribute]
[DataContractAttribute]
public ref class PageResult : PageResult, IEnumerable<T>, IEnumerable

NameDescription
System_CAPS_pubmethodPageResult<T>(IEnumerable<T>^, Uri^, Nullable<Int64>)

Creates a partial set of results - used when server driven paging is enabled.

NameDescription
System_CAPS_pubpropertyCount

Gets the total count of items in the feed.(Inherited from PageResult.)

System_CAPS_pubpropertyItems

Gets the collection of entities for this feed.

System_CAPS_pubpropertyNextPageLink

Gets the link for the next page of items in the feed.(Inherited from PageResult.)

NameDescription
System_CAPS_pubmethodEquals(Object^)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetEnumerator()

Returns an enumerator that iterates through a collection.

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from Object.)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable::GetEnumerator()

Returns an enumerator that iterates through a collection.

Currently limited to:

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

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

Return to top
Show: