Windows8 檢測網路

來源:互聯網
上載者:User

在Windows8 上檢測網路很簡單用到

NetworkInformation這個類

可以看到這個類裡面有以下幾個方法和事件

public static event NetworkStatusChangedEventHandler NetworkStatusChanged;//網路連接改變的事件public static IReadOnlyList<ConnectionProfile> GetConnectionProfiles();public static IReadOnlyList<HostName> GetHostNames();//擷取HostGetInternetConnectionProfile()//詳細網路設定GetConnectionProfiles()//網路概要資訊

       var icp = NetworkInformation.GetInternetConnectionProfile();                if (icp != null && icp.NetworkAdapter != null)                {                    var hostname =                        NetworkInformation.GetHostNames().SingleOrDefault(                            hn =>                            hn.IPInformation != null &&                            hn.IPInformation.NetworkAdapter.NetworkAdapterId ==                               icp.NetworkAdapter.NetworkAdapterId);                    System.Diagnostics.Debug.WriteLine("可用網路IP:" + hostname.DisplayName);                    System.Diagnostics.Debug.WriteLine("網路狀態:" + icp.GetNetworkConnectivityLevel());                }

使用

NetworkInformation.GetInternetConnectionProfile();擷取網路設定後可以得到 NetworkAdapter 網路裝置
GetNetworkConnectivityLevel()得到當前網路的狀態 他是一個枚舉類型具體如下
        // Summary:        //     No connectivity. 沒有訪問        None = 0,         //        // Summary:        //     Local network access only. 本網訪問        LocalAccess = 1,        //        // Summary:        //     Limited internet access. This value indicates captive portal connectivity,        //     where local access to a web portal is provided, but access to the Internet        //     requires that specific credentials are provided via the portal. This level        //     of connectivity is generally encountered when using connections hosted in        //     public locations (e.g. coffee shops and book stores).        // 有限的訪問        ConstrainedInternetAccess = 2,        //        // Summary:        //     Local and Internet access. internet訪問        InternetAccess = 3,

可以用NetworkInformation裡面的 NetworkStatusChanged 監聽網路改變然後在做相應的處理

歡迎轉載,轉載請註明來自BeyondBlog的部落格

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.