Example #1
0
        public override void OnBatchScanResults(IList <ScanResult> results)
        {
            base.OnBatchScanResults(results);

            BatchScanResults?.Invoke(this, new BLEScanResultsEventArgs(results));
        }
Example #2
0
 /// <summary>
 /// Event handler for batch scan results
 /// </summary>
 /// <param name="results">Batch scan results</param>
 private void DoBatchScanResults(IList <ScanResult> results)
 {
     BatchScanResults?.Invoke(this, new NordicBatchScanResultsEventArgs(results));
 }