I would like to check internet connectivity type in Windows Universal Application.
To find if the user has any network connection whatsoever (including one without internet) I use
public bool ConnectedToNetwork() { return NetworkInformation.GetInternetConnectionProfile()?.NetworkAdapter != null; }