JsonNode.NodeType Property
In This Article
Gets or sets the type of the JSON node that the JsonNode object defines.
Namespace: DevExpress.DataAccess.Json
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
public JsonNodeType NodeType { get; set; }
#Property Value
Type | Description |
---|---|
Json |
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