我正在使用Windows Universal应用程序(Windows 8.1和Windows Phone 8.1之间共享后端,而不是Silverlight)。该应用程序通过Azure移动服务连接到Azure。在应用程序的设置中,我希望有一个选项可以仅通过WiFi网络进行同步。

如何确定手机是否已连接到WiFi或移动网络?尽管从我的研究中,我已经找到了使用旧版本的Windows Phone和Silverlight进行此操作的方法,但似乎只能确定Windows Universal应用程序中的设备是否已连接到互联网。

最佳答案

我相信您可以使用以下类似方法从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等)。

07-24 09:36