REST.Response.Adapter.TCustomJSONDataSetAdapter.ObjectView

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ObjectView: Boolean read GetObjectView write SetObjectView default False;

C++

__property bool ObjectView = {read=GetObjectView, write=SetObjectView, default=0};

Properties

Type Visibility Source Unit Parent
property public
REST.Response.Adapter.pas
REST.Response.Adapter.hpp
REST.Response.Adapter TCustomJSONDataSetAdapter

Description

Specifies the column definition mode.

When it is False, then JSON elements will be represented using flat field list.

When it is True, then JSON objects will be represented using ftADT, arrays - ftDataSet, and simple fields - type, depending on TypesMode and derived from field contents.

This mode is slower and may not be supported by some dataset classes.

See Also

REST.Response.Adapter.TCustomJSONDataSetAdapter