Share via


PropertyConfiguration.Page Method

Definition

Overloads

Page()

Sets this property enable paging.

Page(Nullable<Int32>, Nullable<Int32>)

Sets the max value of $top of this property that a client can request and the maximum number of query results of this property to return.

Page()

Sets this property enable paging.

public Microsoft.AspNet.OData.Builder.PropertyConfiguration Page ();
member this.Page : unit -> Microsoft.AspNet.OData.Builder.PropertyConfiguration
Public Function Page () As PropertyConfiguration

Returns

Applies to

Page(Nullable<Int32>, Nullable<Int32>)

Sets the max value of $top of this property that a client can request and the maximum number of query results of this property to return.

public Microsoft.AspNet.OData.Builder.PropertyConfiguration Page (int? maxTopValue, int? pageSizeValue);
member this.Page : Nullable<int> * Nullable<int> -> Microsoft.AspNet.OData.Builder.PropertyConfiguration
Public Function Page (maxTopValue As Nullable(Of Integer), pageSizeValue As Nullable(Of Integer)) As PropertyConfiguration

Parameters

maxTopValue
Nullable<Int32>
pageSizeValue
Nullable<Int32>

Returns

Applies to