首页 > Windows开发 > 详细

C#检查网络是否可以连接互联网

时间:2017-02-13 17:38:17      阅读:224      评论:0      收藏:0      [点我收藏+]

添加引用:using System.Runtime.InteropServices;

[DllImport("wininet.dll")]
        private extern static bool InternetGetConnectedState(int Description, int ReservedValue);

        #region 方法一
        /// <summary>
        /// 用于检查网络是否可以连接互联网,true表示连接成功,false表示连接失败
        /// </summary>
        /// <returns></returns>
        public static bool IsConnectInternet()
        {
            int Description = 0;
            return InternetGetConnectedState(Description, 0);
        }

        #endregion

调用我就不写了,相信大家都会。

C#检查网络是否可以连接互联网

原文:http://www.cnblogs.com/mq0036/p/6394705.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!