我在 Windows 8 中使用 HttpClient 类。在 Windows Phone 中,我将 WebClient 类与编码结合使用以获得正确的编码。
WebClient xml = new WebClient();
xml.Encoding = Encoding.GetEncoding("ISO-8859-1");
在 Windows 8 中,它看起来像这样:
HttpClient xml = new HttpClient();
HttpResponseMessage response = await xml.GetAsync(uri);
responsetext = await response.Content.ReadAsStringAsync();
如何添加编码以支持德语(变音符号)?