EntitySearchRequest.PageNumber 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 page number of the result set to return the data.
public:
property int PageNumber { int get(); };
public int PageNumber { get; }
member this.PageNumber : int
Public ReadOnly Property PageNumber As Integer
Property Value
Returns Int32The page number of the result set to return the data.
Remarks
This is used along with the PageCount 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.