0

我在 Windows UWP 设备驱动程序中遇到蓝牙配对问题。我目前使用的是 Windows 10(Build 10240)计算机,我使用的是 vs2015。我使用(自定义)选择器创建了一个设备观察程序,以获取配对和未配对的蓝牙设备。我得到了范围内的所有蓝牙设备。当我尝试通过配对属性获取设备的 DeviceInformationCustomPairing 时,配对属性始终为空。

  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;
4

0 回答 0