JsonNode.NodeType Property
Gets or sets the type of the JSON node that the JsonNode object defines.
Namespace: DevExpress.DataAccess.Json
Assembly: DevExpress.DataAccess.v24.1.dll
NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap
Declaration
Property Value
Type | Description |
---|---|
JsonNodeType | The type of the JSON node. |
Available values:
Name | Description |
---|---|
Object | Identifies a JSON node as an object. |
Array | Identifies a JSON node as an array. |
Property | Identifies a JSON node as a property. |
Remarks
This property’s default value is JsonNodeType.Object.
See Also