Table of Contents

Class EntityPage<T>

Namespace
Hsl.Xrm.Sdk
Assembly
Hsl.Xrm.Sdk.Core.dll

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

bool

Methods

RetrieveNextPageAsync(IAsyncOrgService, CancellationToken)

Retrieves the next page of results.

public Task<EntityPage<T>> RetrieveNextPageAsync(IAsyncOrgService service, CancellationToken cancellationToken = default)

Parameters

service IAsyncOrgService
cancellationToken CancellationToken

Returns

Task<EntityPage<T>>