PagedView.withPageSizeAndOffset constructor

PagedView.withPageSizeAndOffset(
  1. int pageSize,
  2. int offset
)
Initializes a new instance of the The maximum number of elements the search operation should return. The offset of the view from the base point.

Implementation

PagedView.withPageSizeAndOffset(int pageSize, int offset) : super() {
  this.PageSize = pageSize;
  this.Offset = offset;
}