Azure.PageableOperation<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();
}
}