Beispiel #1
0
 /// <summary>
 /// Signal the scanning device to stop actively scanning</summary>
 /// <param name="scanDelegate">Delegate to unregister from the ScanOccurred event</param>
 public virtual void StopScan(ScanEventDelegate scanDelegate)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 /// <summary>
 /// Signal the scanning device to stop actively scanning</summary>
 /// <param name="scanDelegate">Delegate to unregister from the ScanOccurred event</param>
 public override void StopScan(ScanEventDelegate scanDelegate)
 {
     ScanOccurred -= scanDelegate;
 }