Share via


StructuralTypeConfiguration<TStructuralType>.Page Method

Definition

Overloads

Page()

Sets the properties of this structural type enable paging.

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

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

Page()

Sets the properties of this structural type enable paging.

public Microsoft.AspNet.OData.Builder.StructuralTypeConfiguration<TStructuralType> Page ();
member this.Page : unit -> Microsoft.AspNet.OData.Builder.StructuralTypeConfiguration<'StructuralType (requires 'StructuralType : null)>
Public Function Page () As StructuralTypeConfiguration(Of TStructuralType)

Returns

Applies to

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

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

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

Parameters

maxTopValue
Nullable<Int32>
pageSizeValue
Nullable<Int32>

Returns

Applies to