PagedListT Constructor
Namespace: Gemstone.CollectionsAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
Gemstone.Collections.PagedList = function(source, page, pageSize, count);
Parameters
- source IEnumerableT
- Source enumeration to paginate.
- page Int32
- Page number (1-based).
- pageSize Int32
- Page size.
- count Int32 (Optional)
- Total records in source if known.
If count is known or can be calculated early, specify the value in the
count parameter as an optimization to prevent a full
enumeration on source to get a count.