System.Bluetooth.TBluetoothGattServer.AdvertiseData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AdvertiseData: TBluetoothLEAdvertiseData read FAdvertiseData;

C++

__property TBluetoothLEAdvertiseData* AdvertiseData = {read=FAdvertiseData};

Properties

Type Visibility Source Unit Parent
property public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothGattServer

Description

Advertising data that the GATT server broadcasts to any reachable remote client.

When you modify your GATT server, the GATT server updates its advertising data accordingly. For example:

  • When you change the name of your GATT server, the GATT server updates the LocalName property of the advertising data.
  • When you add a service to your GATT server and you specify that you want the new service advertised, the GATT server updates the ServiceUUIDs property of the advertising data.

See Also