wclGattCharacteristicChangedEvent Delegate |
The OnCharacteristicChanged event handler
prototype.
Namespace:
wclBluetooth
Assembly:
wclBluetoothFramework (in wclBluetoothFramework.dll) Version: 7.6.3.0 (7.6.3.0)
Syntaxpublic delegate void wclGattCharacteristicChangedEvent(
Object Sender,
ushort Handle,
byte[] Value
)
Public Delegate Sub wclGattCharacteristicChangedEvent (
Sender As Object,
Handle As UShort,
Value As Byte()
)
public delegate void wclGattCharacteristicChangedEvent(
Object^ Sender,
unsigned short Handle,
array<unsigned char>^ Value
)
Parameters
- Sender
- Type: SystemObject
The object initiates the event. - Handle
- Type: SystemUInt16
A changed characteristic handle. - Value
- Type: SystemByte
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