Data.DBXJSONReflect.TJSONConverter.OnFieldStart
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: public | |
Source: Data.DBXJSONReflect.pas Data.DBXJSONReflect.hpp
| |
Unit: Data.DBXJSONReflect | |
Parent: TJSONConverter |
Delphi
procedure OnFieldStart(const FieldName: string); override;
C++
virtual void __fastcall OnFieldStart(const System::UnicodeString FieldName);
Description
Called for each field of a JSON object.
The OnFieldStart event is called for each field of a JSON object.
Note: The field value is provided by one of the events: OnString, OnNumber, OnBoolean, OnNull, OnListStart.