我在Windows UWP设备驱动程序中遇到蓝牙配对问题。我目前在Windows 10(Build 10240)计算机上使用vs2015。我创建了一个带有(自定义)选择器的设备观察器,以获得配对和未配对的蓝牙设备。我得到了范围内的所有蓝牙设备。当我尝试通过配对属性获取设备的DeviceInformationCustomPairing时,配对属性始终为null。
private void DeviceWatcher_EnumerationCompleted(DeviceWatcher sender, object args)
{
var device = devices.Where(x => x?.Name != null && x.Name == name).FirstOrDefault();
if (device != null)
{
DeviceInformationCustomPairing customPairing = device.Pairing.Custom;