REST.JsonReflect.TConverter.OnFieldStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure OnFieldStart(Field: TRttiField); virtual; abstract;

C++

virtual void __fastcall OnFieldStart(System::Rtti::TRttiField* Field) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
REST.JsonReflect.pas
REST.JsonReflect.hpp
REST.JsonReflect TConverter

Description

Occurs right before the value of a field with Field as name is processed.

Depending on the type of the value of the field, one of the following events occurs after OnFieldStart and provides the value of the field or announces the beginning of the processing of that value:

After the value is processed, OnFieldEnd occurs.

See Also