首页 > 代码库 > 使用Ping测试网络连通状态

使用Ping测试网络连通状态

技术分享
   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测试网络连通状态