尝试读取ResponseStream时不支持指定的方法

时间:2019-01-16 08:53:06

标签: c# asp.net

我正在尝试读取responseStream到最后,并在br.ReadBytes行中收到错误“不支持指定的方法”。

我在做什么错了?

result3 = df3['Column1']=='Not_Match'
result3



if result3.all():
    df3['Column2'] = Match_Org

1 个答案:

答案 0 :(得分:0)

我遇到错误:NotSupportedException:此流不支持搜索 操作。

假设您需要字节数组,为什么不使获取图像变得容易得多:

byte[] imageBytes
using (var webClient = new WebClient()) {
    imageBytes = webClient.DownloadData("http://yourimage");
}