Click or drag to resize

wclBleSnifferRawPacketReceivedEvent Delegate

The BLE sniffer OnRawPacketReceived event handler prototype.

Namespace: wclBluetooth
Assembly: wclBluetoothFramework (in wclBluetoothFramework.dll) Version: 7.17.12.0 (7.17.12.0)
Syntax
public delegate void wclBleSnifferRawPacketReceivedEvent(
	Object Sender,
	wclBluetoothLePacketHeader Header,
	byte[] Payload
)

Parameters

Sender  Object
The object initiates the event.
Header  wclBluetoothLePacketHeader
The Bluetooth LE packet header.
Payload  Byte
The pointer to the packet's payload raw bytes. The pointer is valid only inside an event handler. If an application needs to use the data outside the event handler it must copy the payload.
See Also