EntitySearchRequest.PageCount Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of records to return per page.
public:
property int PageCount { int get(); };
public int PageCount { get; }
member this.PageCount : int
Public ReadOnly Property PageCount As Integer
Property Value
Returns Int32The number of records to return per page.
Remarks
This is used along with the PageNumber property. For example, if your query returns 500 records, you can specify PageCount
as 50
to return 50 records in a page, which implies that you’ll have 10 pages of data (50 records * 10 pages = 500). Now, if you want to return records 100-150, specify the PageNumber
value as 3.