SeekToConditionItemView constructor

SeekToConditionItemView(
  1. SearchFilter condition,
  2. int pageSize
)
Initializes a new instance of the Condition to be used when seeking. The maximum number of elements the search operation should return.

Implementation

SeekToConditionItemView(SearchFilter condition, int pageSize) {
  this.Condition = condition;
  this.PageSize = pageSize;
  this.serviceObjType = ServiceObjectType.Item;
}