Winform通过ping baidu.com 检测网络

2898826456.png

Ping pingSender = new Ping();
PingReply reply = null;

try
{
    reply = pingSender.Send("www.baidu.com", 1000);  //if判断是否可以连接网站
}
    catch (Exception)
{

}
finally
{
    if (reply == null || (reply != null && reply.Status != IPStatus.Success))
    {//网络连接失败
                                       
    }
    else
    {//网络正常
        if (reply.Status == IPStatus.Success) //if判断网络正常状态
        {
                        
        }
    }
}
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容