<PackageReference Include="System.ClientModel" Version="1.3.0" />

System.ClientModel.Primitives.AsyncCollectionResult

public abstract class AsyncCollectionResult
Represents a collection of values returned from a cloud service operation. The collection values may be delivered over one or more service responses.
namespace System.ClientModel.Primitives { public abstract class AsyncCollectionResult { protected AsyncCollectionResult(); public abstract IAsyncEnumerable<ClientResult> GetRawPagesAsync(); public abstract ContinuationToken GetContinuationToken(ClientResult page); } }