Table of Contents

Class PagingInfo

Namespace
OpenSettings.Models
Assembly
OpenSettings.dll
public class PagingInfo
Inheritance
PagingInfo
Inherited Members

Constructors

PagingInfo(int, int, int)

public PagingInfo(int pageIndex, int pageSize, int itemCount)

Parameters

pageIndex int
pageSize int
itemCount int

PagingInfo(int, int, int, int, bool, bool)

public PagingInfo(int pageIndex, int pageSize, int itemCount, int pageCount, bool hasPrevious, bool hasNext)

Parameters

pageIndex int
pageSize int
itemCount int
pageCount int
hasPrevious bool
hasNext bool

Properties

HasNext

public bool HasNext { get; set; }

Property Value

bool

HasPrevious

public bool HasPrevious { get; set; }

Property Value

bool

ItemCount

public int ItemCount { get; set; }

Property Value

int

PageCount

public int PageCount { get; set; }

Property Value

int

PageIndex

public int PageIndex { get; set; }

Property Value

int

PageSize

public int PageSize { get; set; }

Property Value

int