C# ile İnternet Bağlantısı Kontrol Etme

Lafı çok uzatmadan direk kodlara geçelim.

public static bool InternetBaglantisiVarmi(string sitelink)
{
    try
    {
        sitelink = sitelink == null ? "www.google.com" : sitelink;
        System.Net.IPHostEntry ip = System.Net.Dns.GetHostEntry(sitelink);
        return true;
    }
    catch
    {
        return false;
    }
}

Sevebilirsin...

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

This site uses Akismet to reduce spam. Learn how your comment data is processed.