Enum JsonReader.State
- Namespace
- Newtonsoft.Json
- Assembly
- Newtonsoft.Json.dll
Specifies the state of the reader.
protected enum JsonReader.State
Fields
Array = 6Reader is in an array.
ArrayStart = 5Reader is at the start of an array.
Closed = 7The Close method has been called.
Complete = 1The end of the file has been reached successfully.
Constructor = 10Reader in a constructor.
ConstructorStart = 9Reader is at the start of a constructor.
Error = 11An error occurred that prevents the read operation from continuing.
Finished = 12The end of the file has been reached successfully.
Object = 4Reader is in an object.
ObjectStart = 3Reader is at the start of an object.
PostValue = 8Reader has just read a value.
Property = 2Reader is at a property.
Start = 0The Read method has not been called.