HttpRequestMessageProperty.QueryString 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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 注入攻击)。 请总是严格验证包含在查询字符串中的参数。 如果不经验证就使用值,那等于开放众所周知的安全漏洞。