System.Bluetooth.TBluetoothGattService.DoCreateIncludedService

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoCreateIncludedService(const AnUUID: TBluetoothUUID; AType: TBluetoothServiceType): TBluetoothGattService; virtual; abstract;

C++

virtual TBluetoothGattService* __fastcall DoCreateIncludedService(const GUID &AnUUID, TBluetoothServiceType AType) = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothGattService

Description

Creates an included service (a reference to another service) of the specified service type with the specified UUID, adds that newly included service to the list of included services of your service, and returns that newly included service.

Note: This is an abstract method that platform-specific subclasses of TBluetoothGattService implement.

See Also