您的位置:首页 > 编程语言 > C#

c#判断socket是否还连接着

2012-07-25 15:39 393 查看
刚开始用的是Socket.Connected。但是,msdn上说:“

The Connected property gets the connection state of the Socket as of the last I/O operation. When it returns false, the Socket was either never connected, or is no longer connected.

The value of the Connected property reflects the state of the connection as of the most recent operation. If you need to determine the current state of the connection, make a nonblocking, zero-byte Send call. If the call returns successfully or throws
a WAEWOULDBLOCK error code (10035), then the socket is still connected; otherwise, the socket is no longer connected.




所以不能用Socket.Connected判断。

使用方法:

private bool SocketConnected()
{
try
{
return !_socket.Poll(1, SelectMode.SelectRead) && (_socket.Available == 0);
}
catch (SocketException)
{
return false;
}
catch (ObjectDisposedException)
{
return false;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: