İnternete bağlantısının olup olmadığını bazen otomatik olarak yapmak isteyebiliriz.Her zaman internet connection status'a bakamayabiliriz bu durumda basit bir fonksiyonla bunu halledebiliriz.
private bool InternetExist()
{
try
{
System.Net.Sockets.TcpClient clnt = new System.Net.Sockets.TcpClient("www.google.com", 80);
clnt.Close();
return true;
}
catch
{
return false;
}
}
Hiç yorum yok:
Yorum Gönder