gpt4 book ai didi

c# - 无法访问已处置的对象。套接字 C#

转载 作者:行者123 更新时间:2023-12-01 21:36:09 24 4
gpt4 key购买 nike

我使用套接字,当我尝试关闭套接字时,我得到一个

ObjectDisposedException: Cannot access a disposed object Object name: 'System.Net.Sockets.Socket'.

异常。

        socket.Close();
socket.Shutdown(SocketShutdown.Both); <- exception

为什么会这样?垃圾收集器为什么要清理它?

最佳答案

Socket.Close的备注部分文档告诉你

For connection-oriented protocols, it is recommended that you call Shutdown before calling the Close method. This ensures that all data is sent and received on the connected socket before it is closed.

因此,您应该在 关闭 之前调用 Shutdown,而不是在之后

socket.Shutdown(SocketShutdown.Both);
socket.Close();

关于c# - 无法访问已处置的对象。套接字 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61930791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com