Orc.NuGetExplorer.PagingService.IsLastPage C# (CSharp) Method

IsLastPage() public method

public IsLastPage ( Pager pager ) : bool
pager Pager
return bool
        public bool IsLastPage(Pager pager)
        {
            var lastPageIndex = GetLastPageIndex(pager);
            return pager.ItemIndex >= lastPageIndex;
        }