I'm trying to get a hold on specific devices by using the PeerFinder class in Windows 8 / Windows Phone 8.
Following the example as shown in the Build presentation: http://channel9.msdn.com/Events/Build/2012/3-047
I got the paired bluetooth devices by using these lines:
PeerFinder.AlternateIdentities["Bluetooth:PAIRED"] = "";
var devices = await PeerFinder.FindAllPeersAsync();
But now I would like to get a list of devices that are connected via bluetooth or maybe even other devices by using a different key in the:
PeerFinder.AlternateIdentities[KEY] = "";
line of code. The MSDN documentation isn't helpful in this case.