Tag Archives: Internet Connectivity

Checking for Internet Connection

In my previous post where I had shared about checking for Network Connectivity, NetworkInterface.GetIsNetworkAvailable(), however what the method is actually doing is to simple check for network connection and not necessary internet connection. There are situation where there is network … Continue reading

Posted in C#, Windows Phone, winrt | Tagged , | Leave a comment

Checking for Internet Connectivity in Windows 8 C#/winrt

To prevent winrt app from crashing while doing web method due to the lack of Internet Connectivity, always use the below code to check for Internet Connectivity. Declaring the method in App.cs would ease the usage. Ideally the app should … Continue reading

Posted in winrt | Tagged , , , , | 3 Comments

Checking for Internet Connectivity in Windows Phone C#

To prevent app from crashing while doing web method due to the lack of Internet Connectivity, always use the below code to check for Internet Connectivity. Ideally the app should inform the user to check its internet connection before trying … Continue reading

Posted in Windows Phone | Tagged , , , | 1 Comment