Skip to content

Instantly share code, notes, and snippets.

@mushfiqweb
Created May 20, 2017 23:48
Show Gist options
  • Select an option

  • Save mushfiqweb/46c354817435b16d3b59d9fe97b864e2 to your computer and use it in GitHub Desktop.

Select an option

Save mushfiqweb/46c354817435b16d3b59d9fe97b864e2 to your computer and use it in GitHub Desktop.
public void checkinternet()
{
var connection = NetworkInformation.GetInternetConnectionProfile();
bool status = (connection != null &&
connection.GetNetworkConnectivityLevel() == NetworkConnectivityLevel.InternetAccess);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment