<PackageReference Include="Azure.Core" Version="1.55.0" />

Azure.PageableOperation<T>

public abstract class PageableOperation<T> : Operation<AsyncPageable<T>>
Represents a pageable long-running operation that exposes the results in either synchronous or asynchronous format.
namespace Azure { public abstract class PageableOperation<T> : Operation<AsyncPageable<T>> { public abstract AsyncPageable<T> GetValuesAsync(CancellationToken cancellationToken = default(CancellationToken)); public abstract Pageable<T> GetValues(CancellationToken cancellationToken = default(CancellationToken)); protected PageableOperation(); } }