Page<T> Class

Definition

A single Page<T> of values from a request that may return zero or more Page<T>s of values.

public abstract class Page<T>
type Page<'T> = class
Public MustInherit Class Page(Of T)

Type Parameters

T

The type of values.

Inheritance
Page<T>
Derived

Constructors

Page<T>()

Properties

ContinuationToken

Gets the continuation token used to request the next Page<T>. The continuation token may be null or empty when there are no more pages.

Values

Gets the values in this Page<T>.

Methods

FromValues(IReadOnlyList<T>, String, Response)

Creates a new Page<T>.

GetRawResponse()

Gets the Response that provided this Page<T>.

Applies to