StructuralTypeConfiguration<TStructuralType>.Page Method
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.
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)