Dela via


ResultPage<T> Class

Definition

Represents the subset (or page) of results contained in a single response from a cloud service returning a collection of results sequentially over one or more calls to the service (i.e. a paged collection).

public class ResultPage<T> : System.ClientModel.ResultCollection<T>
type ResultPage<'T> = class
    inherit ResultCollection<'T>
Public Class ResultPage(Of T)
Inherits ResultCollection(Of T)

Type Parameters

T
Inheritance

Properties

ContinuationToken

Gets the continuation token used to request the next ResultPage<T>. May be null or empty when no values remain to be returned from the collection.

Methods

Create(IEnumerable<T>, String, PipelineResponse)

Creates a new ResultPage<T>.

GetEnumerator()

Returns an enumerator that iterates through the collection.

GetRawResponse()

Gets the PipelineResponse received from the service.

(Inherited from ClientResult)
SetRawResponse(PipelineResponse)

Update the value returned from GetRawResponse().

(Inherited from ClientResult)

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Returns an enumerator that iterates through a collection.

(Inherited from ResultCollection<T>)

Applies to