您可以使用
DeviceInformation.FindAllAsync(String)
方法,可以指定要
BluetoothDevice.GetDeviceSelectorFromPairingState(true)
或
BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected)
作为以下代码。
//Paired bluetooth devices
DeviceInformationCollection PairedBluetoothDevices =
await DeviceInformation.FindAllAsync(BluetoothDevice.GetDeviceSelectorFromPairingState(true));
//Connected bluetooth devices
DeviceInformationCollection ConnectedBluetoothDevices =
await DeviceInformation.FindAllAsync(BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected));
有关详细信息,请参见主题
Enumerate devices
还有官员
DeviceEnumerationAndPairing
样品。