HttpListenerRequest::RawUrl Property
.NET Framework (current version)
Gets the URL information (without the host and port) requested by the client.
Assembly: System (in System.dll)
The raw URL is defined as the part of the URL following the domain information. In the URL string http://www.contoso.com/articles/recent.aspx, the raw URL is /articles/recent.aspx. The raw URL includes the query string, if present.
To obtain the host and port information, use the RemoteEndPoint property.
The following code example demonstrates using the RawUrl property.
public static void CheckTestUrl(HttpListener listener, HttpListenerRequest request) { if (request.RawUrl == "/www.contoso.com/test/NoReply") { listener.Abort (); return; } }
.NET Framework
Available since 2.0
Available since 2.0
Show: