在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();
}