Skip to content

Instantly share code, notes, and snippets.

@Cdddo
Last active June 17, 2023 00:17
Show Gist options
  • Save Cdddo/68ea6a45e7319d9f9a995335fd493485 to your computer and use it in GitHub Desktop.
Save Cdddo/68ea6a45e7319d9f9a995335fd493485 to your computer and use it in GitHub Desktop.
Internet Check
using System.Net.NetworkInformation;
public static bool CheckForInternetConnection()
{
try
{
using (var ping = new Ping())
{
var result = ping.Send("8.8.8.8", 2000);
return result.Status == IPStatus.Success;
}
}
catch
{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment