enter image description hereI am using xamarin forms. I need to check whether my app is having the permission of Mobile Data(not internet access). I cannot get any code for this.
Please refer the below images.enter image description here
enter image description hereI am using xamarin forms. I need to check whether my app is having the permission of Mobile Data(not internet access). I cannot get any code for this.
Please refer the below images.enter image description here
You can check your device connectivity with Xamarin.Essentials
You will use the API this way :
var current = Connectivity.NetworkAccess;
if (current == NetworkAccess.Internet)
{
// Connection to internet is available
}
else
{
//Connection to internet is not available because mobile data is disable
}