Table of Contents

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

device IBluetoothRemoteDevice

The device whose RSSI changed.

rssi int

The new RSSI value.

Properties

Device

Gets the device whose RSSI changed.

public IBluetoothRemoteDevice Device { get; }

Property Value

IBluetoothRemoteDevice

Rssi

Gets the new RSSI value.

public int Rssi { get; }

Property Value

int