C# ile internet bağlantısı kontolünü yapmanın basit bir yolu bir internet sitesine bağlanmayı denemektir. En güvenilir site de google olduğunu göre işe başlayalım :) Gerekli olan kütüphane
using System.Net;
using System.Net;
/// <summary> /// Internet baglantisinin olup olmadigini kontrol eder /// </summary> /// <returns>Internet baglantisinin olup olmadigi</returns> public bool CheckForInternetConnection() { try { using (var client = new WebClient()) using (var stream = client.OpenRead("http://www.google.com")) { return true; } } catch { return false; } }