HttpListenerRequest.Url Property
.NET Framework 3.0
Gets the Uri object requested by the client.
Namespace: System.Net
Assembly: System (in system.dll)
Assembly: System (in system.dll)
The Url property allows you to obtain all the information available from a Uri object. If you need to know only the raw text of the URI request, consider using the RawUrl property instead.
The Url property is null if the Uri from the client could not be parsed.
The following code example demonstrates using the Url property.
public static void ShowRequestProperties1 (HttpListenerRequest request) { // Display the MIME types that can be used in the response. string[] types = request.AcceptTypes; if (types != null) { Console.WriteLine("Acceptable MIME types:"); foreach (string s in types) { Console.WriteLine(s); } } // Display the language preferences for the response. types = request.UserLanguages; if (types != null) { Console.WriteLine("Acceptable natural languages:"); foreach (string l in types) { Console.WriteLine(l); } } // Display the URL used by the client. Console.WriteLine("URL: {0}", request.Url.OriginalString); Console.WriteLine("Raw URL: {0}", request.RawUrl); Console.WriteLine("Query: {0}", request.QueryString); // Display the referring URI. Console.WriteLine("Referred by: {0}", request.UrlReferrer); //Display the HTTP method. Console.WriteLine("HTTP Method: {0}", request.HttpMethod); //Display the host information specified by the client; Console.WriteLine("Host name: {0}", request.UserHostName); Console.WriteLine("Host address: {0}", request.UserHostAddress); Console.WriteLine("User agent: {0}", request.UserAgent); }
public static void ShowRequestProperties1(HttpListenerRequest request)
{
// Display the MIME types that can be used in the response.
String types[] = request.get_AcceptTypes();
if (types != null) {
Console.WriteLine("Acceptable MIME types:");
for (int iCtr = 0; iCtr < types.get_Length(); iCtr++) {
String s = types[iCtr];
Console.WriteLine(s);
}
}
// Display the language preferences for the response.
types = request.get_UserLanguages();
if (types != null) {
Console.WriteLine("Acceptable natural languages:");
for (int iCtr = 0; iCtr < types.get_Length(); iCtr++) {
String l = types[iCtr];
Console.WriteLine(l);
}
}
// Display the URL used by the client.
Console.WriteLine("URL: {0}", request.get_Url().get_OriginalString());
Console.WriteLine("Raw URL: {0}", request.get_RawUrl());
Console.WriteLine("Query: {0}", request.get_QueryString());
// Display the referring URI.
Console.WriteLine("Referred by: {0}", request.get_UrlReferrer());
//Display the HTTP method.
Console.WriteLine("HTTP Method: {0}", request.get_HttpMethod());
//Display the host information specified by the client;
Console.WriteLine("Host name: {0}", request.get_UserHostName());
Console.WriteLine("Host address: {0}", request.get_UserHostAddress());
Console.WriteLine("User agent: {0}", request.get_UserAgent());
} //ShowRequestProperties1