如何在Windows中获取连接的蓝牙设备的属性?

oknwwptz  于 2023-05-01  发布在  Windows
关注(0)|答案(1)|浏览(175)

bounty还有2天到期。回答此问题可获得+100声望奖励。Tom Xue正在寻找一个答案从一个有信誉的来源

我需要通过C#在Windows中连接蓝牙设备的属性。我发现这篇文章:
Getting a list of already connected bluetooth devices on Windows 10
它提到的代码是:

//Connected bluetooth devices
DeviceInformationCollection ConnectedBluetoothDevices =
       await DeviceInformation.FindAllAsync(BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected));

但是当运行代码时,我得到下面的异常。看来这种方法不能再用了。
有什么建议吗?

i34xakig

i34xakig1#

祝你好运!

相关问题