public bool internet_kontrol()
    {
        bool cevap = false;
        if (Application.internetReachability == NetworkReachability.NotReachable) cevap = false;
       else cevap = true;
        return cevap;
    }

if (internet_kontrol) 
{  //BAŞARILI
}
else 
{  //BAŞARISIZ
}