Noemax.Newtonsoft.Json Namespace : JsonReader Class |
The following tables list the members exposed by JsonReader.
Name | Description | |
---|---|---|
![]() | CloseInput | Gets or sets a value indicating whether the underlying stream or System.IO.TextReader should be closed when the reader is closed. |
![]() | Culture | Gets or sets the culture used when reading JSON. Defaults to System.Globalization.CultureInfo.InvariantCulture. |
![]() | DateFormatString | Get or set how custom date formatted strings are parsed when reading JSON. |
![]() | DateParseHandling | Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. |
![]() | DateTimeZoneHandling | Get or set how System.DateTime time zones are handling when reading JSON. |
![]() | Depth | Gets the depth of the current token in the JSON document. |
![]() | FloatParseHandling | Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. |
![]() | MaxDepth | Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a JsonReaderException. |
![]() | Path | Gets the path of the current JSON token. |
![]() | QuoteChar | Gets the quotation mark character used to enclose the value of a string. |
![]() | SupportMultipleContent | Gets or sets a value indicating whether multiple pieces of JSON content can be read from a continuous stream without erroring. |
![]() | TokenType | Gets the type of the current JSON token. |
![]() | Value | Gets the text value of the current JSON token. |
![]() | ValueType | Gets The Common Language Runtime (CLR) type for the current JSON token. |
Name | Description | |
---|---|---|
![]() | CurrentState | Gets the current reader state. |
Name | Description | |
---|---|---|
![]() | Close | Changes the JsonReader.State to Closed. |
![]() | Read | Reads the next JSON token from the stream. |
![]() | ReadAsBytes | Reads the next JSON token from the stream as a Byte[]. |
![]() | ReadAsDateTime | Reads the next JSON token from the stream as a System.Nullable`1. |
![]() | ReadAsDateTimeOffset | Reads the next JSON token from the stream as a System.Nullable`1. |
![]() | ReadAsDecimal | Reads the next JSON token from the stream as a System.Nullable`1. |
![]() | ReadAsInt32 | Reads the next JSON token from the stream as a System.Nullable`1. |
![]() | ReadAsString | Reads the next JSON token from the stream as a System.String. |
![]() | Skip | Skips the children of the current token. |
Name | Description | |
---|---|---|
![]() | Dispose | Releases unmanaged and - optionally - managed resources |
![]() | SetStateBasedOnCurrent | Sets the state based on current token type. |
![]() | SetToken | Overloaded. Sets the current token. |