Table of Contents

Interface IDeviceScannerEvents

Namespace
NixUniversalSDK
Assembly
NixUniversalSDK.dll

Interface defining the events invoked by the IDeviceScanner.

public interface IDeviceScannerEvents

Events

ScanResult

Event that is invoked when the IDeviceScanner has found a Nix device. This is invoked each time that a device advertisement has been received, or signal strength Rssi has updated, so multiple events may be received for a given Nix device. The Id can be used to uniquely identify each separate device.

event EventHandler<ScanResultEventArgs> ScanResult

Event Type

EventHandler<ScanResultEventArgs>

ScannerCreated

Event that is invoked when the IDeviceScanner has been created

event EventHandler<ScannerCreatedEventArgs> ScannerCreated

Event Type

EventHandler<ScannerCreatedEventArgs>

ScannerStarted

Event that is invoked when the IDeviceScanner starts searching for devices

event EventHandler ScannerStarted

Event Type

EventHandler

ScannerStopped

Event that is invoked when the IDeviceScanner stops searching for devices

event EventHandler ScannerStopped

Event Type

EventHandler