System.Bluetooth.TBluetoothDevice.LastServiceList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LastServiceList: TBluetoothServiceList read GetServiceList;

C++

__property TBluetoothServiceList* LastServiceList = {read=GetServiceList};

Properties

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

Description

Cached list of services that the remote device provides.

When you read the LastServiceList property, TBluetoothDevice requests the latest list of services to the remote device only if one of the following conditions is met:

  • The list of services has not been fetched from the remote device yet.
  • The last time that the list of services was fetched from the remote device, the list was empty.

Otherwise, LastServiceList provides the cached list of services. If you want to force TBluetoothDevice to refresh the list, call GetServices.

Platform Support

Platform Supported Notes

32-bit Windows
64-bit Windows

YesC++11Feature.png

OS X

YesC++11Feature.png

Android

4.0.2+

See Also