Class RssiChangedEventArgs
- Namespace
- Bluetooth.Abstractions.Scanning.EventArgs
- Assembly
- Bluetooth.Abstractions.Scanning.dll
Event arguments for the RSSI changed event during an active connection.
public class RssiChangedEventArgs : EventArgs
- Inheritance
-
RssiChangedEventArgs
- Inherited Members
Constructors
RssiChangedEventArgs(IBluetoothRemoteDevice, int)
Initializes a new instance of the RssiChangedEventArgs class.
public RssiChangedEventArgs(IBluetoothRemoteDevice device, int rssi)
Parameters
deviceIBluetoothRemoteDeviceThe device whose RSSI changed.
rssiintThe new RSSI value.
Properties
Device
Gets the device whose RSSI changed.
public IBluetoothRemoteDevice Device { get; }
Property Value
Rssi
Gets the new RSSI value.
public int Rssi { get; }