你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PageableList<T> Class

Definition

Represents a pageable list of data items with item ID cursors representing the start and end of the current page.

public class PageableList<T> : System.Collections.Generic.IEnumerable<T>
type PageableList<'T> = class
    interface seq<'T>
    interface IEnumerable
Public Class PageableList(Of T)
Implements IEnumerable(Of T)

Type Parameters

T

The type of the data instances contained in the list.

Inheritance
PageableList<T>
Implements

Remarks

FirstId and LastId can be used as inputs into methods that list items to retrieve additional items before or after the current page's view.

Properties

Data

The requested list of items.

FirstId

The first ID represented in this list.

HasMore

A value indicating whether there are additional values available not captured in this list.

Item[Int32]

Gets the data item at the specified index.

LastId

The last ID represented in this list.

Methods

GetEnumerator()

Returns an enumerator that iterates through the collection.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

Applies to