windows8開發-判斷網路連結狀況

來源:互聯網
上載者:User

如果當前網路處於未串連狀態,直接使用HttpClient中的PostAsync等方法發起資料請求時,會拋出異常。

所以,在進行網路的資料互動之前,應當進行網路狀態的判斷。如果網路可用,則再執行網路資料請求的操作。

在Windows8 API中可以通過NetworkConnectivityLevel這介面擷取網路的狀態。

具體代碼如下:

    /// <summary>    /// 提供與網路相關的資料設定或擷取功能    /// </summary>    public class NetworkHelper    {        public static bool IsConnectedToInternet()        {            bool isConnected = false;            ConnectionProfile cp = NetworkInformation.GetInternetConnectionProfile();            if (cp != null)            {                NetworkConnectivityLevel cl = cp.GetNetworkConnectivityLevel();                isConnected = (cl == NetworkConnectivityLevel.InternetAccess);            }            return isConnected;        }    }

使用的時候,可以這樣實現:

HttpClient httpClient = new HttpClient();if (NetworkHelper.IsConnectedToInternet()){HttpResponseMessage response = await httpClient.PostAsync(new Uri(serverUri), new StringContent(postData));if (response.StatusCode == HttpStatusCode.OK){// TODO: 處理返回的結果}// ...}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.