Click or drag to resize

wclGattCharacteristicChangedEvent Delegate

The OnCharacteristicChanged event handler prototype.

Namespace: wclBluetooth
Assembly: wclBluetoothFramework (in wclBluetoothFramework.dll) Version: 7.17.12.0 (7.17.12.0)
Syntax
public delegate void wclGattCharacteristicChangedEvent(
	Object Sender,
	ushort Handle,
	byte[] Value
)

Parameters

Sender  Object
The object initiates the event.
Handle  UInt16
A changed characteristic handle.
Value  Byte
A characteristic value.
Remarks
The Value parameter is valid only inside the event handler. If an application needs to use it outside the event handler it must be copied.
See Also