c# – windows.web.http和ByteArray

我在Windows Phone 8.1应用程序中使用System.net.http,直到遇到自签名和不受信任的证书问题.那么现在,我正在使用Windows.Web.Http框架.一切都运行良好除了我找不到与IHttpContent接口中的ByteArrayContent相当的东西...

我在Windows Phone 8.1应用程序中使用System.net.http,直到遇到自签名和不受信任的证书问题.

那么现在,我正在使用Windows.Web.Http框架.一切都运行良好除了我找不到与IHttpContent接口中的ByteArrayContent相当的东西.同样,IHttpContent没有与ReadAsByteArrayAsync等效的方法.

我使用ByteArrayContent和ReadAsByteArrayAsync来通过HttpClient发送和获取文件.

什么是正确的方法?

谢谢!

解决方法:

使用HttpBufferContent和IHttpContent.ReadAsBufferAsync().

使用WinRT扩展,您可以将数组转换为调用myArray.AsBuffer()的IBuffer.

// using System.Runtime.InteropServices.WindowsRuntime;
byte[] foo = new byte[] { 20, 21, 22, 23 };
IHttpContent content = new HttpBufferContent(foo.AsBuffer());

// using Windows.Storage.Streams;
IBuffer barBuffer = await content.ReadAsBufferAsync();
byte[] bararray = barBuffer.ToArray();

本文标题为:c# – windows.web.http和ByteArray

基础教程推荐