System.Beacon.TBeaconInfo
Delphi
TBeaconInfo = record
GUID: TGUID;
Major: Word;
Minor: Word;
BeaconType: Word;
TxPower: Integer;
AdditionalData: TBytes;
end;
C++
struct DECLSPEC_DRECORD TBeaconInfo
{
public:
GUID GUID;
System::Word Major;
System::Word Minor;
System::Word BeaconType;
int TxPower;
#ifndef _WIN64
System::DynamicArray<System::Byte> AdditionalData;
#else /* _WIN64 */
System::TArray__1<System::Byte> AdditionalData;
#endif /* _WIN64 */
};
Eigenschaften
| Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
|---|---|---|---|---|
record struct |
public | System.Beacon.pas System.Beacon.hpp |
System.Beacon | System.Beacon |
Beschreibung
Record-Typ, der die zerlegten Beacon-Informationen enthält.
Der Record-Typ TBeaconInfo enthält die von dem Beacon empfangenen, zerlegten Informationen.