| CopyString |
Copies the current JSON token value from the source, unescaped as a UTF-8 string to the destination buffer. |
| GetBoolean() |
Parses the current JSON token value from the source as a Boolean. Returns true if the TokenType is JsonTokenType.True and false if the... |
| GetByte() |
Parses the current JSON token value from the source as a Byte. Returns the value if the entire UTF-8 encoded token value can be successfully... |
| GetBytesFromBase64() |
Parses the current JSON token value from the source and decodes the Base64 encoded JSON string as bytes. |
| GetComment() |
Parses the current JSON token value from the source as a comment, transcoded as a String. |
| GetDateTime() |
Parses the current JSON token value from the source as a DateTime. Returns the value if the entire UTF-8 encoded token value can be succe... |
| GetDateTimeOffset() |
Parses the current JSON token value from the source as a DateTimeOffset. Returns the value if the entire UTF-8 encoded token value... |
| GetDecimal() |
Parses the current JSON token value from the source as a Decimal. Returns the value if the entire UTF-8 encoded token value can be success... |
| GetDouble() |
Parses the current JSON token value from the source as a Double. Returns the value if the entire UTF-8 encoded token value can be successfu... |
| GetGuid() |
Parses the current JSON token value from the source as a Guid. Returns the value if the entire UTF-8 encoded token value can be successfully... |
| GetInt16() |
Parses the current JSON token value from the source as a Int16. Returns the value if the entire UTF-8 encoded token value can be successfull... |
| GetInt32() |
Parses the current JSON token value from the source as an Int32. Returns the value if the entire UTF-8 encoded token value can be successful... |
| GetInt64() |
Parses the current JSON token value from the source as a Int64. Returns the value if the entire UTF-8 encoded token value can be successfull... |
| GetSByte() |
Parses the current JSON token value from the source as an SByte. Returns the value if the entire UTF-8 encoded token value can be successful... |
| GetSingle() |
Parses the current JSON token value from the source as a Single. Returns the value if the entire UTF-8 encoded token value can be successfu... |
| GetString() |
Parses the current JSON token value from the source, unescaped, and transcoded as a String. |
| GetUInt16() |
Parses the current JSON token value from the source as a UInt16. Returns the value if the entire UTF-8 encoded token value can be successfu... |
| GetUInt32() |
Parses the current JSON token value from the source as a UInt32. Returns the value if the entire UTF-8 encoded token value can be successfu... |
| GetUInt64() |
Parses the current JSON token value from the source as a UInt64. Returns the value if the entire UTF-8 encoded token value can be successfu... |
| Read() |
Read the next JSON token from input source. |
| Skip() |
Skips the children of the current JSON token. |
| TryGetByte(ref byte) |
Parses the current JSON token value from the source as a Byte. Returns true if the entire UTF-8 encoded token value can be successfully par... |
| TryGetBytesFromBase64(ref byte[]) |
Parses the current JSON token value from the source and decodes the Base64 encoded JSON string as bytes. Returns true if the entire token value is encoded as valid Base64 text and can be successf... |
| TryGetDateTime(ref DateTime) |
Parses the current JSON token value from the source as a DateTime. Returns true if the entire UTF-8 encoded token value can be successf... |
| TryGetDateTimeOffset(ref DateTimeOffset) |
Parses the current JSON token value from the source as a DateTimeOffset. Returns true if the entire UTF-8 encoded token value can... |
| TryGetDecimal(ref decimal) |
Parses the current JSON token value from the source as a Decimal. Returns true if the entire UTF-8 encoded token value can be successful... |
| TryGetDouble(ref double) |
Parses the current JSON token value from the source as a Double. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetGuid(ref Guid) |
Parses the current JSON token value from the source as a Guid. Returns true if the entire UTF-8 encoded token value can be successfully par... |
| TryGetInt16(ref short) |
Parses the current JSON token value from the source as a Int16. Returns true if the entire UTF-8 encoded token value can be successfully p... |
| TryGetInt32(ref int) |
Parses the current JSON token value from the source as an Int32. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetInt64(ref long) |
Parses the current JSON token value from the source as a Int64. Returns true if the entire UTF-8 encoded token value can be successfully p... |
| TryGetSByte(ref sbyte) |
Parses the current JSON token value from the source as an SByte. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetSingle(ref float) |
Parses the current JSON token value from the source as a Single. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetUInt16(ref ushort) |
Parses the current JSON token value from the source as a UInt16. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetUInt32(ref uint) |
Parses the current JSON token value from the source as a UInt32. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TryGetUInt64(ref ulong) |
Parses the current JSON token value from the source as a UInt64. Returns true if the entire UTF-8 encoded token value can be successfully... |
| TrySkip() |
Tries to skip the children of the current JSON token. |
| ValueTextEquals |
Compares the UTF-8 encoded text to the unescaped JSON token value in the source and returns true if they match. |