Subscriber portal
Gets the physical path of the Web request.
public string RequestPath { get; }
The physical path of the request.
The following code example shows how to get the Web-request path.
// Get the request path. public string GetRequestPath() { // Get the request path. return (string.Format( "Request path: {0}", RequestInformation.RequestPath)); }
WebRequestInformation ClassSystem.Web.Management Namespace