Share via


PagedList<T> Class

Definition

Represents a paged list that contains a list of items and a continuation token.

public abstract class PagedList<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>
type PagedList<'T> = class
    interface IList<'T>
    interface ICollection<'T>
    interface seq<'T>
    interface IEnumerable
Public MustInherit Class PagedList(Of T)
Implements ICollection(Of T), IEnumerable(Of T), IList(Of T)

Type Parameters

T

The type of the items returned by query.

Inheritance
PagedList<T>
Derived
Implements

Remarks

The paged list is obtained from queries that have more results than can fit a message. The next results can be obtained by executing the same query with the previous continuation token.

Applies to