Skip to content

Instantly share code, notes, and snippets.

@alxsimo
Created April 14, 2014 09:28
Show Gist options
  • Save alxsimo/10631807 to your computer and use it in GitHub Desktop.
Save alxsimo/10631807 to your computer and use it in GitHub Desktop.
[C#] CheckForInternetConnection - comprobar conexión a internet
public static bool CheckForInternetConnection()
{
try
{
using (var client = new WebClient())
using (var stream = client.OpenRead("http://www.google.com"))
{
return true;
}
}
catch
{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment