Table of Contents

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

device IBluetoothRemoteDevice

The device whose pairing state changed.

isPaired bool

Indicates whether the device is now paired.

Properties

Device

Gets the device whose pairing state changed.

public IBluetoothRemoteDevice Device { get; }

Property Value

IBluetoothRemoteDevice

IsPaired

Gets a value indicating whether the device is now paired.

public bool IsPaired { get; }

Property Value

bool