API:REST.JsonReflect.TJSONConverter.OnTypeStart

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure OnTypeStart(TypeName: string); override;

C++

virtual void __fastcall OnTypeStart(System::UnicodeString TypeName);

Properties

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

Description

Occurs when the conversion process finds a new object.

REST.JsonReflect.TJSONConverter.OnTypeStart inherits from REST.JsonReflect.TConverter.OnTypeStart. All content below this line refers to REST.JsonReflect.TConverter.OnTypeStart.

Occurs when the conversion process finds a new object.

TypeName is the name of the type of the object.

When the conversion process finds a previously-seen object, the OnRefType event occurs instead.

See Also