次の方法で共有


EntitySearchRequest.PageNumber Property

Definition

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.

Applies to