IPagedEnumerable<T>
Interface
Definition
Exposes enumerators for a paged collection. These enumerators support simple iteration over a paged collection of a specified type.
Paged collections are backed by one or more calls to the Batch Service.
Each of these calls can return a variable sized page of data which is then consumed by the enumerator.
public interface IPagedEnumerable<T> : System.Collections.Generic.IEnumerable<T>
Type Parameters
- T
The type of objects to enumerate.
- Implements
-
IEnumerable<T>
Methods
| GetPagedEnumerator() |
Returns an asynchronous enumerator that iterates through the paged collection. |