Knetik.StoreQuery.NextPage C# (CSharp) Method

NextPage() public method

public NextPage ( Action cb = null ) : StoreQuery
cb Action
return StoreQuery
        public StoreQuery NextPage(Action<KnetikResult<StoreQuery>> cb = null)
        {
            var next = new StoreQuery (Client);
            next.PageIndex = PageIndex + 1;
            next.PageSize = PageSize;
            next.Terms = Terms;
            next.Related = Related;
            if (cb != null) {
                next.Load (cb);
            }
            return next;
        }