Share via


ODataHttpRequestMessageExtensions.GetNextPageLink Method (HttpRequestMessage)

 

Note: This API is now obsolete.

Gets the next page link for the OData response.

Namespace:   System.Net.Http
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

[ObsoleteAttribute("This method is obsolete; use the ODataProperties().NextLink property from the System.Web.Http.OData.Extensions or System.Web.OData.Extensions namespace.")]
public static Uri GetNextPageLink(
    this HttpRequestMessage request
)
public:
[ExtensionAttribute]
[ObsoleteAttribute("This method is obsolete; use the ODataProperties().NextLink property from the System.Web.Http.OData.Extensions or System.Web.OData.Extensions namespace.")]
static Uri^ GetNextPageLink(
    HttpRequestMessage^ request
)
[<ObsoleteAttribute("This method is obsolete; use the ODataProperties().NextLink property from the System.Web.Http.OData.Extensions or System.Web.OData.Extensions namespace.")>]
static member GetNextPageLink : 
        request:HttpRequestMessage -> Uri
<ExtensionAttribute>
<ObsoleteAttribute("This method is obsolete; use the ODataProperties().NextLink property from the System.Web.Http.OData.Extensions or System.Web.OData.Extensions namespace.")>
Public Shared Function GetNextPageLink (
    request As HttpRequestMessage
) As Uri

Parameters

Return Value

Type: System.Uri

The next page link to send back to the client or null if if no next page link should be sent back to the client.

See Also

ODataHttpRequestMessageExtensions Class
System.Net.Http Namespace

Return to top