码迷,mamicode.com
首页 > Windows程序 > 详细

C# 给TcpClient的Connect方法设置超时时间

时间:2018-12-26 16:57:46      阅读:561      评论:0      收藏:0      [点我收藏+]

标签:end   connect   overflow   client   span   var   cti   方法   wait   

var client = new TcpClient();
var result = client.BeginConnect("remotehost", this.Port, null, null);

var success = result.AsyncWaitHandle.WaitOne(TimeSpan.FromSeconds(1));

if (!success)
{
    throw new Exception("Failed to connect.");
}

// we have connected
client.EndConnect(result);

 

 

.Net 4.5的简便写法

 

var client = new TcpClient();
if (!client.ConnectAsync("remotehost", remotePort).Wait(1000))
{
    // connection failure
}

 

代码出处: https://stackoverflow.com/questions/17118632/how-to-set-the-timeout-for-a-tcpclient

C# 给TcpClient的Connect方法设置超时时间

标签:end   connect   overflow   client   span   var   cti   方法   wait   

原文地址:https://www.cnblogs.com/xyz0835/p/10179665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!