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
;
}
}