次のような文字列をデコードするにはどうすればよいですか。
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メソッドを試しましたが、同じ文字列が返されるようです。