Class JDataResult
- Namespace
- Codebelt.Extensions.Newtonsoft.Json
- Assembly
- Codebelt.Extensions.Newtonsoft.Json.dll
Specifies a result set of a JSON reader operation.
public class JDataResult
- Inheritance
-
JDataResult
Properties
Children
Gets the children of the JSON token.
public IList<JDataResult> Children { get; }
Property Value
- IList<JDataResult>
The children of the JSON token.
Parent
Gets the parent of the JSON token.
public JDataResult Parent { get; }
Property Value
- JDataResult
The parent of the JSON token.
Path
Gets the path of the JSON token.
public string Path { get; }
Property Value
- String
The path of the JSON token.
PropertyName
Gets the name of the JSON token property.
public string PropertyName { get; }
Property Value
- String
The name of the JSON token property.
Type
Gets the CLR type of the JSON token.
public Type Type { get; }
Property Value
- Type
The CLR type of the JSON token.
Value
Gets the value of the JSON token.
public object Value { get; }
Property Value
- Object
The value of the JSON token.
Methods
ToString()
Returns a String that represents this instance.
public override string ToString()