HttpListenerRequest.QueryString 属性    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取包含在请求中的查询字符串。
public:
 property System::Collections::Specialized::NameValueCollection ^ QueryString { System::Collections::Specialized::NameValueCollection ^ get(); };
	public System.Collections.Specialized.NameValueCollection QueryString { get; }
	member this.QueryString : System.Collections.Specialized.NameValueCollection
	Public ReadOnly Property QueryString As NameValueCollection
	属性值
一个 NameValueCollection 对象,其中包含的查询数据包括在请求 Url 中。
示例
下面的代码示例演示如何使用 QueryString 属性。
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 Shared Sub ShowRequestProperties1(ByVal request As HttpListenerRequest)
    ' Display the MIME types that can be used in the response.
    Dim types As String() = request.AcceptTypes
    If types IsNot Nothing Then
        Console.WriteLine("Acceptable MIME types:")
        For Each s As String In types
            Console.WriteLine(s)
        Next
    End If
    ' Display the language preferences for the response.
    types = request.UserLanguages
    If types IsNot Nothing Then
        Console.WriteLine("Acceptable natural languages:")
        For Each l As String In types
            Console.WriteLine(l)
        Next
    End If
    ' 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)
End Sub
	注解
在 URL 中,查询信息与路径信息之间用问号 ( ) 分隔。 名称/值对由等号分隔 (=) 。 若要以单个字符串的形式访问查询数据,请Query从 返回Url的 Uri 对象中获取 属性值。
注意
没有等号的查询 (例如, http://www.contoso.com/query.htm?Name) 添加到 null 中的 NameValueCollection键。