HttpRequestMessageProperty.QueryString 属性

定义

获取或设置 HTTP 请求的查询字符串。

public:
 property System::String ^ QueryString { System::String ^ get(); void set(System::String ^ value); };
public string QueryString { get; set; }
member this.QueryString : string with get, set
Public Property QueryString As String

属性值

HTTP 请求中的查询字符串。

例外

值设置为 null

注解

有很多基于 HTTP 请求查询字符串的已知安全攻击(例如,SQL 注入攻击)。 请总是严格验证包含在查询字符串中的参数。 如果不经验证就使用值,那等于开放众所周知的安全漏洞。

适用于