How to check internet connection availability in Windows 8,C# development ? I looked at MSDN but page has been deleted.
For Windows Phone Following code may be usefull:
var networkInformation = NetworkInformation.GetConnectionProfiles(); if (networkInformation.Count == 0) { //no network connection }