Die Methode prüft mittels Ping ob eine Internetverbindung vorhanden ist (oder auch nicht;)
Folgender Namespace wird benötigt:
using System.Net.NetworkInformation;
/// <summary>
/// Prüft ob eine Internetverbindung vorhanden ist.
/// </summary>
/// <returns>
/// true/false
/// </returns>
public static bool CheckInternetConnection()
{
Ping ping = new Ping();
try
{
PingReply reply = ping.Send("www.google.at", 100);
return reply.Status == IPStatus.Success;
}
catch
{
return false;
}
}
Kommentare zum Snippet