Struct JsonToken
Represents token used to parse JSON data.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: DevZest.Data.Primitives
Assembly: DevZest.Data.dll
Syntax
public struct JsonToken
Fields
| Name | Description |
|---|---|
| Comma | Gets the comma ',' token. |
| CurlyClose | Gets the curly close '}' token. |
| CurlyOpen | Gets the curly open '{' token. |
| Eof | Gets the Eof token. |
| False | Gets the 'false' literal token. |
| Kind | Gets the kind of token. |
| Null | Gets the 'null' literal token. |
| SquaredClose | Gets the squared close ']' token. |
| SquaredOpen | Gets the squared open '[' token. |
| Text | Gets the text of token. |
| True | Gets the 'true' literal token. |
Properties
| Name | Description |
|---|---|
| JsonValue | Gets the JsonValue of the token. |
Methods
| Name | Description |
|---|---|
| Number(String) | Returns a token for specified number. |
| PropertyName(String) | Returns a token for specified property name. |
| String(String) | Returns a token for specified text. |