我正在使用Windows Universal应用程序(Windows 8.1和Windows Phone 8.1之间的共享后端,而不是Silverlight)。该应用程序通过Azure移动服务连接到Azure。在应用程序的设置中,我希望只能通过WiFi网络进行同步选项。
如何确定手机是连接到WiFi还是移动网络?虽然从我的研究中我已经找到了使用旧版Windows Phone和Silverlight的方法,但似乎我只能确定设备是否在Windows Universal应用程序中连接到互联网。
答案 0 :(得分:11)
我相信您可以使用类似于以下内容的ConnectionProfile
来确定此信息:
using Windows.Networking.Connectivity;
var connectionProfile = NetworkInformation.GetInternetConnectionProfile();
// connectionProfile can be null (e.g. airplane mode)
if (connectionProfile != null && connectionProfile.IsWlanConnectionProfile) {
// do something over WiFi;
}
还有IsWwanConnectionProfile
属性,用于确定连接是否通过“移动”连接(3g等)。
答案 1 :(得分:0)
我认为这是检查互联网可用性的唯一方法:
bool IsConnected = NetworkInterface.GetIsNetworkAvailable();
if (IsConnected)
{
// Do Something
}
else
{
// Do something different
}
此Link是我的参考。