REST.JsonReflect.TConverter.OnRefType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure OnRefType(TypeName: string; id: Integer); virtual; abstract;

C++

virtual void __fastcall OnRefType(System::UnicodeString TypeName, int id) = 0 ;

Properties

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

Description

Occurs when the conversion process finds a previously-visited object.

TypeName is the name of the type of the object, and id is the unique identifier of the object.

It is the marshalling class that provides the functionality of detecting circuits in the serialization process. The unmarshalling code uses id to restore the actual pointer.

See Also