System.JSON.Writers.TJsonWriteState
Delphi
TJsonWriteState = (Error, Closed, &Object, &Array, &Constructor, &Property, Start);
C++
enum class DECLSPEC_DENUM TJsonWriteState : unsigned char { Error, Closed, Object, Array, Constructor, Property, Start };
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| enum | public | System.JSON.Writers.pas System.JSON.Writers.hpp | System.JSON.Writers | System.JSON.Writers | 
Description
TJsonWriteState enumerates all the possible states of the JSON writer.
| State | Range Value | Description | 
|---|---|---|
| 
 | 
 | An exception has been thrown. | 
| 
 | 
 | The Close method has been called. | 
| 
 | 
 | An object is being written. | 
| 
 | 
 | An array is being written. | 
| 
 | 
 | A constructor is being written. | 
| 
 | 
 | A property is being written. | 
| 
 | 
 | A write method has not been called. |