Stream不支持并发IO读写操作

发布于 2024-10-09 06:39:21 字数 134 浏览 2 评论 0原文

我在 ASP.NET 应用程序中使用网络流从网络读取数据,在尝试从流中读取数据时出现此错误:

stream 不支持并发 IO 读取或写入操作

有时会发生。有什么想法吗?

I'm using a network stream to read data from network in an ASP.NET application and I get this error while trying to read from the stream:

stream does not support concurrent IO read or write operations

It happens sometimes. Any idea ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落日海湾 2024-10-16 06:39:21

听起来就像您试图从不同的线程同时对同一流执行两个不同的操作。添加监视器)或互斥体应该有助于同步对流的访问。

It sounds simply as though you are trying to do two different operations on the same stream at the same time from different threads. Adding a lock (Monitor) or Mutex should help synchronise access to the stream.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文