Skip to main content
A newer version of this page is available. .

JsonNode.NodeType Property

Gets or sets the type of the JSON node that the JsonNode object defines.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v20.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.WindowsDesktop.DataAccess

Declaration

public JsonNodeType NodeType { get; set; }

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