Class JsonReaderResult
Specifies a result set of a JSON reader operation.
Inheritance
System.Object
JsonReaderResult
Namespace: Cuemon.Serialization.Json
Assembly: Cuemon.Serialization.Json.dll
Syntax
public class JsonReaderResult : object
Properties
| Improve this DocChildren
Gets the children of the JSON token.
Declaration
public IList<JsonReaderResult> Children { get; }
Property Value
Type | Description |
---|---|
IList<JsonReaderResult> | The children of the JSON token. |
Parent
Gets the parent of the JSON token.
Declaration
public JsonReaderResult Parent { get; }
Property Value
Type | Description |
---|---|
JsonReaderResult | The parent of the JSON token. |
Path
Gets the path of the JSON token.
Declaration
public string Path { get; }
Property Value
Type | Description |
---|---|
System.String | The path of the JSON token. |
PropertyName
Gets the name of the JSON token property.
Declaration
public string PropertyName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the JSON token property. |
Type
Gets the CLR type of the JSON token.
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
Type | The CLR type of the JSON token. |
Value
Gets the value of the JSON token.
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
System.Object | The value of the JSON token. |
Methods
| Improve this DocToString()
Returns a
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A |