Class EntityPage<T>
Represents a page of results.
public class EntityPage<T> where T : Entity
Type Parameters
T
The early bound type of the results.
- Inheritance
-
EntityPage<T>
- Inherited Members
Properties
Entities
The list of record on this page of results.
public List<T> Entities { get; }
Property Value
- List<T>
MorePages
Whether there are more pages of results or if this is the last page of results.
public bool MorePages { get; }
Property Value
Methods
RetrieveNextPageAsync(IAsyncOrgService, CancellationToken)
Retrieves the next page of results.
public Task<EntityPage<T>> RetrieveNextPageAsync(IAsyncOrgService service, CancellationToken cancellationToken = default)
Parameters
service
IAsyncOrgServicecancellationToken
CancellationToken
Returns
- Task<EntityPage<T>>