如何解码如下字符串:
name1=ABC&userId=DEF&name2=zyx&payload=%3cSTAT+xmlns%3axsi%3d%22http%3a%2f%2fwww.w3.org%2f2001%2fXMLSchema-instance%22%3e%3cREQ...
背景:我接受 HTTP POST(基本上是名称值对),然后将字节数组转换为字符串:
Encoding.UTF8.GetString(response, 0, response.Length);
我已经尝试过 WebUtility 和 HttpUtility 的 HtmlDecode 方法,但似乎得到了相同的字符串。