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

使用Ping测试网络连通状态

时间:2017-07-02 10:27:29      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:alt   src   pst   open   ipa   技术分享   连通   closed   service   

技术分享
   public bool IsPingOk 
        {
            get 
            {
                try
                {
                    Ping ping = new Ping();
                    string ipaddress = this.GetIP(AppConfig.AddrHisService);
                    PingReply pr = ping.Send(ipaddress);
                    if (pr.Status == IPStatus.Success)
                        return true;
                    else
                        return false;
                }
                catch
                {
                    return false;
                }
            }
        }
View Code

 

使用Ping测试网络连通状态

标签:alt   src   pst   open   ipa   技术分享   连通   closed   service   

原文地址:http://www.cnblogs.com/dlzh/p/7105095.html

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