Show / Hide Table of Contents

Class PagerModel

Inheritance
System.Object
PagerModel
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Pagination
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.dll
Syntax
public class PagerModel

Constructors

PagerModel(Int64, Int32, Int32, Int32, String, String)

Declaration
public PagerModel(long totalCount, int shownItemsCount, int currentPage, int pageSize, string pageUrl, string sort = null)
Parameters
Type Name Description
System.Int64 totalCount
System.Int32 shownItemsCount
System.Int32 currentPage
System.Int32 pageSize
System.String pageUrl
System.String sort

Properties

CurrentPage

Declaration
public int CurrentPage { get; set; }
Property Value
Type Description
System.Int32

NextPage

Declaration
public int NextPage { get; set; }
Property Value
Type Description
System.Int32

Pages

Declaration
public List<PageItem> Pages { get; set; }
Property Value
Type Description
System.Collections.Generic.List<PageItem>

PageSize

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32

PageUrl

Declaration
public string PageUrl { get; set; }
Property Value
Type Description
System.String

PreviousPage

Declaration
public int PreviousPage { get; set; }
Property Value
Type Description
System.Int32

ShowingFrom

Declaration
public int ShowingFrom { get; set; }
Property Value
Type Description
System.Int32

ShowingTo

Declaration
public int ShowingTo { get; set; }
Property Value
Type Description
System.Int32

ShownItemsCount

Declaration
public int ShownItemsCount { get; }
Property Value
Type Description
System.Int32

Sort

Declaration
public string Sort { get; set; }
Property Value
Type Description
System.String

TotalItemsCount

Declaration
public long TotalItemsCount { get; set; }
Property Value
Type Description
System.Int64

TotalPageCount

Declaration
public int TotalPageCount { get; set; }
Property Value
Type Description
System.Int32

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft