Skip to main content

Class CharacteristicString

Represents a Bluetooth characteristic with a string value.

Assembly: Meadow.dll
View Source
Declaration
public class CharacteristicString : Characteristic<string>, ICharacteristic, IAttribute, IJsonSerializable

Inheritance: System.Object -> Meadow.Gateways.Bluetooth.Characteristic

Implements:
Meadow.Gateways.Bluetooth.ICharacteristic

Methods

HandleDataWrite(byte[])

Handles the data write for the characteristic.

View Source
Declaration
public override void HandleDataWrite(byte[] data)
Parameters
TypeNameDescription
System.Byte[]dataThe data to be written.

SerializeValue(string)

Serializes the string value to byte array.

View Source
Declaration
protected override byte[] SerializeValue(string value)
Returns

System.Byte[]: The byte array representing the serialized value.

Parameters
TypeNameDescription
System.StringvalueThe string value to be serialized.

Implements