Dela via


PageableCollection<T> Class

Definition

Represents a collection of results returned from a cloud service operation sequentially over one or more calls to the service.

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

Type Parameters

T
Inheritance
PageableCollection<T>

Constructors

PageableCollection<T>()

Create a new instance of PageableCollection<T>.

Methods

AsPages(String, Nullable<Int32>)

Return an enumerable of ResultPage<T> that enumerates the collection's pages instead of the collection's individual values. This may make multiple service requests.

GetEnumerator()

Return an enumerator that iterates through the collection values. This may make multiple service requests.

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