【发布时间】:2020-01-09 08:38:47
【问题描述】:
我有一个需要显示视频源的 Asp.Net 应用程序。视频提要有一个 Httpwebresponse,内容类型为“multipart/x-mixed-replace;边界=--myboundary'。
Stream responseStream = response.GetResponseStream()
StreamReader streamReader = new StreamReader(streamToRead,Encoding.ASCII)
return streamReader.ReadToEnd();
我尝试过使用字符串阅读器,但没有用。 请让我知道如何使用 content-type multipart/x-mixed-replace 读取(访问)响应;边界=--myboundary .
提前致谢。
问候, 普拉文
【问题讨论】:
标签: asp.net httpwebrequest httpwebresponse