C# TcpClient的Connect超时处理(Timeout)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# TcpClient的Connect超时处理(Timeout)相关的知识,希望对你有一定的参考价值。
IAsyncResult ar = tcpClient.BeginConnect(ip,port,null,null); bool success = ar.AsyncWaitHandle.WaitOne(1000); if (!success) throw new Exception("超时时间已到,未连接到指定服务器");
重点就是使用BeginConnect方法,及IAsyncResult.AsyncWaitHandle.WaitOne方法
具体怎么定义的就不写了。
以上是关于C# TcpClient的Connect超时处理(Timeout)的主要内容,如果未能解决你的问题,请参考以下文章
C# 网络连接中异常断线的处理:ReceiveTimeout, SendTimeout 及 KeepAliveValues(设置心跳)