我需要测试 TCP 端口是否空闲。我写了这个方法:
private bool freePort(int port) {
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IAsyncResult result = socket.BeginConnect(IPAddress.Loopback, port, null, null);
bool success = result.AsyncWaitHandle.WaitOne(1000, true);
try{
socket.Close();
}catch(Exception){}
return !success;
}
这适用于 Windows 7,但不适用于 Windows XP。
在winXP中有时有效,有时给出错误答案......