码迷,mamicode.com
首页 > 其他好文 > 详细

根据IP和端口号异步短时间判断服务器是否链接

时间:2017-07-31 00:58:06      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:new   return   syn   服务器   ted   connected   port   handle   wait   

/// <summary>
        /// 短时间判断是否可以连接
        /// </summary>
        /// <param name="ipe"></param>
        /// <returns></returns>
        public static bool TestConnet(IPEndPoint ipe)
        {
            bool b = false;
            var client = new TcpClient();
            try
            {
                var ar = client.BeginConnect(ipe.Address, ipe.Port, null, null);
                ar.AsyncWaitHandle.WaitOne(500);
                b = client.Connected;
                client.Close();
                return b;
            }
            catch
            {
                return b;
            }
            finally
            { client.Close(); }
        }

 

根据IP和端口号异步短时间判断服务器是否链接

标签:new   return   syn   服务器   ted   connected   port   handle   wait   

原文地址:http://www.cnblogs.com/lijianda/p/7260949.html

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