如何解决异常:等待操作超时。 (HRESULT 异常:0x80070102)

How to resolve exception : The wait operation timed out. (Exception from HRESULT: 0x80070102)

我在调用 PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync(); 方法时遇到此异常。它在 Device 上工作正常,但在本地机器上失败。

这是我的代码:

private async void CreateChannel_Click(object sender, RoutedEventArgs e)
       {
var vProfile = NetworkInformation.GetInternetConnectionProfile();
            System.Diagnostics.Debug.WriteLine("InterNetConnectivity==>>" + vProfile.GetNetworkConnectivityLevel().ToString());
            UserResponseTBL.Text = vProfile.GetNetworkConnectivityLevel().ToString();
            if (vProfile.GetNetworkConnectivityLevel() == NetworkConnectivityLevel.InternetAccess)
            {
                var vChannel = await PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync();
                string channelUri = vChannel.Uri;
                UserResponseTBL.Text = channelUri;
                System.Diagnostics.Debug.WriteLine("channelUri : " + channelUri);
            }
        }

我收到异常等待操作超时。 (HRESULT 异常:0x80070102)。 任何帮助将不胜感激。 谢谢

我已经在 device/different 机器上通过 运行 上面的代码解决了这个问题。

出现这个问题是因为我在我的机器上安装了各种版本的Visual Studios。 不知道这个问题的真正原因,但是当我将我的机器升级到 windows 10 时它起作用了。