RouteCollection.GetRouteData(HttpContextBase) Method

Definition

Returns information about the route in the collection that matches the specified values.

public:
 System::Web::Routing::RouteData ^ GetRouteData(System::Web::HttpContextBase ^ httpContext);
public System.Web.Routing.RouteData GetRouteData (System.Web.HttpContextBase httpContext);
member this.GetRouteData : System.Web.HttpContextBase -> System.Web.Routing.RouteData
Public Function GetRouteData (httpContext As HttpContextBase) As RouteData

Parameters

httpContext
HttpContextBase

An object that encapsulates information about the HTTP request.

Returns

An object that contains the values from the route definition.

Exceptions

context is null.

The Request property of the object in the context parameter is null.

Applies to

See also