我正在创建List<KeyValuePair<string, string>>
&#34; Key,Value&#34; 。我传递的其中一个 Value 是System.Text.Encoding.UTF8.GetString(bytesResult);
,其中byteResult是byte[]
。
这个 Value 可以有一些这样的字符&#34;如果\ u000f \ 0 + *,\&#34; [j&#34;
当我尝试使用List<KeyValuePair<string, string>>
对此HttpFormUrlEncodedContent
进行编码时,我得到了System.ArgumentException
,其中异常消息为&#34;值不在预期的范围。&#34;
var postData = new List<KeyValuePair<string, string>>
{
...
};
var content = new HttpFormUrlEncodedContent(postData);
添加我从ZXing Barcode Scanner获得的byte []示例。