Merhabalar ben http request ile internet var mı kontrolü yaparak bunun sonucuna göre işlemler yaptırmak istiyorum. İnternet varken program gayet güzel çalışıyor if bloğuna giriyor ve devam ediyor ama internet yokken “Http client: Bilinen böyle bir ana bilgisayar yok. (cloudflare.com:80)” hatası verip ilerlemiyor else bloğuna veya catch kısmına gitmiyor. N yapmam gerekli ?
This is happening because the activity is trying to hit the url and the host is not available so it will throw system exception
Enclose your http block with try catch activity and inside catch block you have have steps you want to perform in else part and
After that if you want, you can have additional check with the status code =200
@Emirhan_ALICI
Hope this helps