Share via


HttpRequestExtensions.GetNextPageLink Method

Definition

Overloads

GetNextPageLink(HttpRequest, Int32)

Creates a link for the next page of results; To be used as the value of @odata.nextLink.

GetNextPageLink(HttpRequest, Int32, Object, Func<Object,String>)

GetNextPageLink(HttpRequest, Int32)

Creates a link for the next page of results; To be used as the value of @odata.nextLink.

public static Uri GetNextPageLink (this Microsoft.AspNetCore.Http.HttpRequest request, int pageSize);
static member GetNextPageLink : Microsoft.AspNetCore.Http.HttpRequest * int -> Uri
<Extension()>
Public Function GetNextPageLink (request As HttpRequest, pageSize As Integer) As Uri

Parameters

request
HttpRequest

The request on which to base the next page link.

pageSize
Int32

The number of results allowed per page.

Returns

Uri

A next page link.

Applies to

GetNextPageLink(HttpRequest, Int32, Object, Func<Object,String>)

public static Uri GetNextPageLink (this Microsoft.AspNetCore.Http.HttpRequest request, int pageSize, object instance, Func<object,string> objectToSkipTokenValue);
static member GetNextPageLink : Microsoft.AspNetCore.Http.HttpRequest * int * obj * Func<obj, string> -> Uri
<Extension()>
Public Function GetNextPageLink (request As HttpRequest, pageSize As Integer, instance As Object, objectToSkipTokenValue As Func(Of Object, String)) As Uri

Parameters

request
HttpRequest
pageSize
Int32
instance
Object
objectToSkipTokenValue
Func<Object,String>

Returns

Uri

Applies to