PageRouteHandler.GetSubstitutedVirtualPath(RequestContext) Method

Definition

Returns the virtual path of the physical file for the route after substitutions have been applied to any replacement parameters.

public:
 System::String ^ GetSubstitutedVirtualPath(System::Web::Routing::RequestContext ^ requestContext);
public string GetSubstitutedVirtualPath (System.Web.Routing.RequestContext requestContext);
member this.GetSubstitutedVirtualPath : System.Web.Routing.RequestContext -> string
Public Function GetSubstitutedVirtualPath (requestContext As RequestContext) As String

Parameters

requestContext
RequestContext

An object that encapsulates information about the request.

Returns

The URL of the physical file that was generated from a route.

Exceptions

The requestContext parameter is null.

Remarks

If the VirtualPath value does not contain any replacement parameters, the GetSubstitutedVirtualPath method returns the same value as the VirtualPath property.

Applies to

See also