Class BluetoothLEAdvertisementDataSection
- Namespace
- nanoFramework.Device.Bluetooth.Advertisement
- Assembly
- nanoFramework.Device.Bluetooth.dll
A Bluetooth LE advertisement section. A Bluetooth LE advertisement packet can contain multiple instances of these BluetoothLEAdvertisementDataSection objects.
public class BluetoothLEAdvertisementDataSection
- Inheritance
-
BluetoothLEAdvertisementDataSection
- Inherited Members
- Extension Methods
Constructors
BluetoothLEAdvertisementDataSection()
Creates a new BluetoothLEAdvertisementDataSection object.
public BluetoothLEAdvertisementDataSection()
BluetoothLEAdvertisementDataSection(byte, Buffer)
Creates a new BluetoothLEAdvertisementDataSection object with the Bluetooth LE advertisement data type and the payload.
public BluetoothLEAdvertisementDataSection(byte dataType, Buffer data)
Parameters
dataTypebyteThe Bluetooth LE advertisement data type as defined by the Bluetooth Special Interest Group (SIG).
dataBufferThe Bluetooth LE advertisement data payload.
Properties
Data
The Bluetooth LE advertisement data payload.
public Buffer Data { get; set; }
Property Value
DataType
The Bluetooth LE advertisement data type as defined by the Bluetooth Special Interest Group (SIG).
public byte DataType { get; set; }