| JsonReaderState Enumeration |
Specifies the state of the reader.
Namespace:
Newtonsoft.Json
Assembly:
Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax Members
| Member name | Value | Description |
---|
| Start | 0 |
A JsonReader read method has not been called.
|
| Complete | 1 |
The end of the file has been reached successfully.
|
| Property | 2 |
Reader is at a property.
|
| ObjectStart | 3 |
Reader is at the start of an object.
|
| Object | 4 |
Reader is in an object.
|
| ArrayStart | 5 |
Reader is at the start of an array.
|
| Array | 6 |
Reader is in an array.
|
| Closed | 7 |
The Close method has been called.
|
| PostValue | 8 |
Reader has just read a value.
|
| ConstructorStart | 9 |
Reader is at the start of a constructor.
|
| Constructor | 10 |
Reader is in a constructor.
|
| Error | 11 |
An error occurred that prevents the read operation from continuing.
|
| Finished | 12 |
The end of the file has been reached successfully.
|
See Also