C# 检查网络是否连通

        [DllImport("wininet.dll")]
        
private extern static bool InternetGetConnectedState(out int connectionDescription, int reservedValue);
        
private bool IsConnected()
        {

            
int I = 0;

            
bool state = InternetGetConnectedState(out I, 0);

            
return state;

        }

调用方法:

 

bool state = IsConnected();   //True 为连通   False 为断开

 

 

posted @ 2009-11-05 10:22  韩天伟  阅读(1067)  评论(0编辑  收藏  举报