如何同步发送和接收?

发布于 2024-10-27 15:40:18 字数 195 浏览 1 评论 0原文

我的 C# 应用程序(异步客户端/服务器)有问题。 当我执行 BeginReceive 和 BeginSend 时,一切都很好,并且数据继续进行。 但是当我执行 BeginSend 和 BeginReceive 时,没有任何反应,并且 BeginSend()/BeginReceive() 冻结。

我该如何解决这个问题?超时没有帮助。

谢谢。

I have a problem in my C# application (async client/server).
When I execute BeginReceive, and than BeginSend, everything is fine, and the data is proceeded.
But when I execute BeginSend, and than BeginReceive, nothing happens, and BeginSend()/BeginReceive() freezes.

How can I solve this problem? Timeouts doesn't help.

Thanks.

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

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

发布评论

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

评论(1

情绪操控生活 2024-11-03 15:40:18

您正在调用 EndSend 和 EndReceive 吗?如果没有,你应该这样做。

异步BeginReceive操作必须通过调用EndReceive方法来完成。通常,该方法由回调委托调用。1

Are you calling EndSend and EndReceive? If not, you should.

The asynchronous BeginReceive operation must be completed by calling the EndReceive method. Typically, the method is invoked by the callback delegate.1

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