Table of Contents

Class MultipleClientDevicesFoundException

Namespace
Bluetooth.Abstractions.Broadcasting.Exceptions
Assembly
Bluetooth.Abstractions.Broadcasting.dll

Represents an exception that occurs when multiple ClientDevices with the same ID are found in a Bluetooth broadcaster.

public class MultipleClientDevicesFoundException : BroadcasterException, ISerializable
Inheritance
MultipleClientDevicesFoundException
Implements
Inherited Members

Constructors

MultipleClientDevicesFoundException(IBluetoothBroadcaster, IEnumerable<IBluetoothConnectedDevice>, Exception?)

Initializes a new instance of the MultipleClientDevicesFoundException class.

public MultipleClientDevicesFoundException(IBluetoothBroadcaster broadcaster, IEnumerable<IBluetoothConnectedDevice> devices, Exception? innerException = null)

Parameters

broadcaster IBluetoothBroadcaster
devices IEnumerable<IBluetoothConnectedDevice>
innerException Exception

MultipleClientDevicesFoundException(IBluetoothBroadcaster, string, IEnumerable<IBluetoothConnectedDevice>, Exception?)

Initializes a new instance of the MultipleClientDevicesFoundException class.

public MultipleClientDevicesFoundException(IBluetoothBroadcaster broadcaster, string id, IEnumerable<IBluetoothConnectedDevice> devices, Exception? innerException = null)

Parameters

broadcaster IBluetoothBroadcaster
id string
devices IEnumerable<IBluetoothConnectedDevice>
innerException Exception

Properties

ClientDevices

Gets the devices that were found matching the criteria.

public IEnumerable<IBluetoothConnectedDevice> ClientDevices { get; }

Property Value

IEnumerable<IBluetoothConnectedDevice>

See Also