如何处理 NetworkStream.Write 失败

发布于 2024-11-02 08:59:29 字数 139 浏览 0 评论 0原文

我有两个应用程序,一个服务器和一个客户端。只要它们都在运行,我就可以在两者之间发送消息。

当我关闭服务器并尝试使用 NetworkStream.Write 发送消息时,出现异常。

处理此问题并通知客户端服务器已关闭的最佳方法是什么?

I have two applications a server and a client. I can send messages between the two as long as they are both running.

When I close the server and try to send a message with NetworkStream.Write i get an exception.

What would be the best way to handle this and notify the client that the server is down?

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

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

发布评论

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

评论(2

留蓝 2024-11-09 08:59:29

平是个坏主意。 ping 和实际消息之间的连接也可能会中断。

正如您自己指出的:

将写入包装在 try/catch 中并向用户显示一条漂亮的小消息。

Ping is a bad idea. The connection can go down between the ping and the actual message too.

As you yourself pointed out:

wrap the write in a try/catch and display a nice little message to the user.

情独悲 2024-11-09 08:59:29

您可以在发送消息之前对服务器进行 ping 操作,如果 ping 失败,则通知用户并且不要发送消息等。

You could ping the server prior to sending the message, if the ping fails then inform the user and don't send the message etc.

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