获取电脑的网络连接状态WebClient
Posted 唐宋元明清的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取电脑的网络连接状态WebClient相关的知识,希望对你有一定的参考价值。
网络连接判断,使用WebClient测试获取:
1 public static bool IsWebClientConnected() 2 { 3 try 4 { 5 using (var client = new WebClient()) 6 using (var stream = client.OpenRead("http://www.qq.com")) 7 { 8 return true; 9 } 10 } 11 catch 12 { 13 return false; 14 } 15 }
直接访问web地址来测试网络的可用性,这个方法延时超高,不建议使用。首次判断100ms-150ms,后续基本维持在20-40ms左右。
以上是关于获取电脑的网络连接状态WebClient的主要内容,如果未能解决你的问题,请参考以下文章