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

JsonNode.NodeType Property

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

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public JsonNodeType NodeType { get; set; }

Property Value

Type Description
JsonNodeType

A JsonNodeType enumeration value.

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

By default, this property is set to JsonNodeType.Object.

See Also