其他分享
首页 > 其他分享> > Tcp连接方式

Tcp连接方式

作者:互联网

方法一:TcpClient tcpAsyClient = new TcpClient(ip, port);      

使用这种方式 连接的时,如果网络不通,程序会卡住,严重时会结束运行。

方法二:TcpClient  tcpAsyClient = new TcpClient();
var resultAsy = tcpAsyClient.BeginConnect(ip, port, null, null);
bool successAsy = resultAsy.AsyncWaitHandle.WaitOne(TimeSpan.FromSeconds(1));

BeginConnect方法为异步方法,WaitOne为响应时间。

标签:TcpClient,方式,ip,Tcp,port,tcpAsyClient,null,连接,WaitOne
来源: https://www.cnblogs.com/chensong0524/p/14107195.html