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

c# 判断网络是连接到互联网

时间:2014-05-31 01:02:49      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:des   c   style   blog   tar   http   




        [System.Runtime.InteropServices.DllImport("wininet")]
        private extern static bool InternetGetConnectedState(out int connectionDescriptionint reservedValue);
       
        private void button1_Click(object senderEventArgs e)
        {
            int i = 0;
            if (InternetGetConnectedState(out i, 0))
                MessageBox.Show("联网状态");
            else
                MessageBox.Show("你网线掉了啦");
        }

修改下 
       [System.Runtime.InteropServices.DllImport("wininet")]
        private extern static bool InternetGetConnectedState(out int connectionDescriptionint reservedValue);
        //判断网络是连接到互联网
        public static bool IsNetWorkConnect()
        {
            int i = 0;
          return InternetGetConnectedState(out i, 0) ? true:false;
        }

          
            if ( IsNetWorkConnect() )
                MessageBox.Show("已连接到互联网");
            else
                MessageBox.Show("无网络")









c# 判断网络是连接到互联网,布布扣,bubuko.com

c# 判断网络是连接到互联网

标签:des   c   style   blog   tar   http   

原文地址:http://www.cnblogs.com/xe2011/p/3761951.html

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