private void PairWithMac(string mac)
 {
     Utils.ValidateMac(mac);
     _pairer.PairDevice(_finder.FindDeviceByMac(_discoverer.DiscoverDevices(), mac));
 }
Beispiel #2
0
 public void UnpairByMac(string mac)
 {
     Utils.ValidateMac(mac);
     _pairer.UnpairDevice(_finder.FindDeviceByMac(_discoverer.DiscoverDevices(), mac));
 }