码迷,mamicode.com
首页 > Windows程序 > 详细

WinRT 中检查 WiFi 是否可用

时间:2014-12-02 18:50:54      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   使用   sp   for   on   div   

 1 public static bool IsWifiConnected()
 2 {
 3     bool isWifiConnected = false;
 4     ConnectionProfile currentConnectionForInternet = NetworkInformation.GetInternetConnectionProfile();
 5     if(currentConnectionForInternet == null)
 6     {
 7         return false;
 8     }
 9     if(currentConnectionForInternet.IsWlanConnectionProfile)
10     {
11         if(currentConnectionForInternet.GetNetworkConnectivityLevel() == NetworkConnectivityLevel.InternetAccess)
12         {
13             return true;
14         }
15     }
16     return false;
17 }

Windows 8.1 和 Windows Phone 8.1 Runtime 检测 WiFi 是否可用使用以上方法。(感觉比WP8 silverlight 麻烦-_-)

WinRT 中检查 WiFi 是否可用

标签:style   blog   io   color   使用   sp   for   on   div   

原文地址:http://www.cnblogs.com/h82258652/p/4138075.html

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