System.JSON.Readers.TJsonReader.FCurrentState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

FCurrentState: TState;

C++

TState FCurrentState;

Properties

Type Visibility Source Unit Parent
field protected
System.JSON.Readers.pas
System.JSON.Readers.hpp
System.JSON.Readers TJsonReader

Description

Variable for CurrentState that stores the current State of the reader.

FCurrentState is a TState var type.

TState is an enum type with all the possible states of the reader:

TState = (Start, Complete, &Property, ObjectStart, &Object, ArrayStart, &Array, Closed, PostValue, ConstructorStart, &Constructor, Error, Finished)

See Also