Click or drag to resize
Json.NET

JsonReaderState Enumeration

 
Specifies the state of the reader.

Namespace:  Newtonsoft.Json
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
protected enum State
Members
  Member nameValueDescription
Start0 A JsonReader read method has not been called.
Complete1 The end of the file has been reached successfully.
Property2 Reader is at a property.
ObjectStart3 Reader is at the start of an object.
Object4 Reader is in an object.
ArrayStart5 Reader is at the start of an array.
Array6 Reader is in an array.
Closed7 The Close method has been called.
PostValue8 Reader has just read a value.
ConstructorStart9 Reader is at the start of a constructor.
Constructor10 Reader is in a constructor.
Error11 An error occurred that prevents the read operation from continuing.
Finished12 The end of the file has been reached successfully.
See Also