Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Interface IPagedCollection<T>

    Represents a paged collection of items of type T.

    Inherited Members
    IPagedCollection.Page
    IPagedCollection.PageCount
    IPagedCollection.PageSize
    IPagedCollection.TotalRecords
    IPagedCollection.HasNext()
    IPagedCollection.HasPrevious()
    Namespace: Innovt.Core.Collections
    Assembly: Innovt.Core.dll
    Syntax
    public interface IPagedCollection<T> : IPagedCollection
    Type Parameters
    Name Description
    T

    The type of items in the collection.

    Remarks

    This interface defines properties and methods for working with paged collections of items. It is commonly used to represent the result of paginated queries or data retrieval operations.

    Properties

    | Edit this page View Source

    Items

    Gets or sets the collection of items in the current page.

    Declaration
    IEnumerable<T> Items { get; set; }
    Property Value
    Type Description
    IEnumerable<T>

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX