Class PairingStateChangedEventArgs
- Namespace
- Bluetooth.Abstractions.Scanning.EventArgs
- Assembly
- Bluetooth.Abstractions.Scanning.dll
Event arguments for the pairing state changed event.
public class PairingStateChangedEventArgs : EventArgs
- Inheritance
-
PairingStateChangedEventArgs
- Inherited Members
Constructors
PairingStateChangedEventArgs(IBluetoothRemoteDevice, bool)
Initializes a new instance of the PairingStateChangedEventArgs class.
public PairingStateChangedEventArgs(IBluetoothRemoteDevice device, bool isPaired)
Parameters
deviceIBluetoothRemoteDeviceThe device whose pairing state changed.
isPairedboolIndicates whether the device is now paired.
Properties
Device
Gets the device whose pairing state changed.
public IBluetoothRemoteDevice Device { get; }
Property Value
IsPaired
Gets a value indicating whether the device is now paired.
public bool IsPaired { get; }