Table of Contents

Class ClientConnectionStateChangedEventArgs

Namespace
Bluetooth.Abstractions.Broadcasting.EventArgs
Assembly
Bluetooth.Abstractions.Broadcasting.dll

Event arguments for the client connection state changed event.

public class ClientConnectionStateChangedEventArgs : EventArgs
Inheritance
ClientConnectionStateChangedEventArgs
Inherited Members

Constructors

ClientConnectionStateChangedEventArgs(IBluetoothConnectedDevice, bool)

Initializes a new instance of the ClientConnectionStateChangedEventArgs class.

public ClientConnectionStateChangedEventArgs(IBluetoothConnectedDevice device, bool isConnected)

Parameters

device IBluetoothConnectedDevice

The client device whose connection state changed.

isConnected bool

Indicates whether the client is now connected.

Properties

Device

Gets the client device whose connection state changed.

public IBluetoothConnectedDevice Device { get; }

Property Value

IBluetoothConnectedDevice

IsConnected

Gets a value indicating whether the client is now connected.

public bool IsConnected { get; }

Property Value

bool