private void RaiseDeviceDiscovered(string portName) { DeviceDiscovered?.Invoke(this, portName); }
private void OnDeviceDiscovered(string theUrl, Device theDevice) { DeviceDiscovered?.Invoke(theUrl, theDevice); }
private void RaiseDeviceDiscovered(BLEDevice device, int rssi, IList <BLEAdvertisement> advertisements) => DeviceDiscovered?.Invoke(this, new BLEDeviceEventArgs(device, rssi, advertisements));
protected void OnDeviceDiscovered(DeviceInfo obj) { DeviceDiscovered?.Invoke(obj); }