How to check internet connectivity type in Universal Windows Platform
1. Check Internet Connection Availability To check whether any network connection is established or not use GetIsNetworkAvailable method of NetworkInterface class. bool isNetworkConnected = NetworkInterface.GetIsNetworkAvailable(); GetIsNetworkAvailable() – Summary: Indicates whether any network connection is available. Returns: true if a network connection is available; otherwise, false. 2. Check Internet Connection Availability via WWLN (WiFi) To check … Read more