Windows 8手机中的蓝牙API用于Windows 8抛出异常

时间:2015-02-26 07:31:02

标签: windows-phone-8 bluetooth windows-rt

在Windows 8中调用Windows phone 8 bluetooth api无效。我收到以下异常:

  在sampleunivapp.Windows.exe中发生

System.InvalidOperationException',但未在用户代码中处理

WinRT信息:在开始

之前无法调用FindAllPeersAsync

附加信息:在意外时间调用了一个方法。

  

PeerFinder.AlternateIdentities["Bluetooth:Paired"] = string.Empty;                
var peerList =await PeerFinder.FindAllPeersAsync();

if (peerList.Count > 0)    
{    
    wpeername.Text = peerList[0].DisplayName;    
}    
else    
{    
    var msg=new MessageDialog("No active peers");

    msg.ShowAsync();
}

0 个答案:

没有答案