enter image description here我正在使用xamarin形式。我需要检查我的应用是否获得了移动数据(不是互联网访问权限)的许可。我无法获得任何代码。
请参考以下图片。enter image description here
答案 0 :(得分:0)
您可以使用Xamarin.Essentials
检查设备的连接情况您将以这种方式使用API:
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
}