Table of Contents

Interface IPagedList<T>

Namespace
GroupeIsa.Neos.Application.Read
Assembly
GroupeIsa.Neos.Application.Abstractions.dll

Provides the functionalities for a paged list.

public interface IPagedList<out T> : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable

Type Parameters

T

The type of elements in the list.

Inherited Members

Properties

Skip

Gets the number of records to ignore.

int Skip { get; }

Property Value

int

Top

Gets the maximum number of records to return.

int Top { get; }

Property Value

int

TotalRecordCount

Gets the total number of records.

int TotalRecordCount { get; }

Property Value

int