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

CollectionResult.GetRawPages Method

Definition

Gets the collection of page responses that contain the items in this collection.

public abstract System.Collections.Generic.IEnumerable<System.ClientModel.ClientResult> GetRawPages ();
abstract member GetRawPages : unit -> seq<System.ClientModel.ClientResult>
Public MustOverride Function GetRawPages () As IEnumerable(Of ClientResult)

Returns

A collection of service responses where each ClientResult holds a subset of items in the full collection.

Remarks

CollectionResult implementations are expected to store the CancellationToken passed to the service method that creates them and pass that token to any methods making service calls that are called from this method. For protocol methods, this CancellationToken will come from the CancellationToken property.

Applies to