BlogEngine.Core.Packaging.Pager.Pager C# (CSharp) Method

Pager() public method

Pager
public Pager ( int currentPage, int itemCount, string pkgType ) : System.Collections.Generic
currentPage int Current page
itemCount int Item count
pkgType string Package type
return System.Collections.Generic
        public Pager(int currentPage, int itemCount, string pkgType)
        {
            _currentPage = currentPage;
            _itemCount = itemCount;
            _pkgType = pkgType;
        }
Pager