ChangeFeedRequestOptions.PageSizeHint 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 or sets the maximum number of items to be returned in the enumeration operation in the Azure Cosmos DB service.
public int? PageSizeHint { get; set; }
member this.PageSizeHint : Nullable<int> with get, set
Public Property PageSizeHint As Nullable(Of Integer)
Property Value
The maximum number of items to be returned in the enumeration operation.
Remarks
This is just a hint to the server which can return less or more items per page. If operations in the container are performed through stored procedures or transactional batch, transaction scope is preserved when reading items from the Change Feed. As a result, the number of items received could be higher than the specified value so that the items changed by the same transaction are returned as part of one atomic batch.
Applies to
Azure SDK for .NET