Table of Contents

Class CharacteristicNotifyException

Namespace
Bluetooth.Abstractions.Scanning.Exceptions
Assembly
Bluetooth.Abstractions.Scanning.dll

Represents an exception that occurs during Bluetooth characteristic notification operations.

public class CharacteristicNotifyException : CharacteristicException, ISerializable
Inheritance
CharacteristicNotifyException
Implements
Derived
Inherited Members

Constructors

CharacteristicNotifyException(IBluetoothRemoteCharacteristic, string, Exception?)

Initializes a new instance of the CharacteristicNotifyException class.

public CharacteristicNotifyException(IBluetoothRemoteCharacteristic remoteCharacteristic, string message = "Unknown Bluetooth characteristic notify exception", Exception? innerException = null)

Parameters

remoteCharacteristic IBluetoothRemoteCharacteristic

The Bluetooth characteristic associated with the exception.

message string

A message that describes the error.

innerException Exception

The inner exception that caused the current exception, if any.

See Also