Skip to main content
All docs
V18.2

JsonSchemaNode.Value Property

Gets or sets a reference to the JsonNode object that defines the JsonSchemaNode.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public override JsonNode Value { get; set; }

Property Value

Type Description
JsonNode

An object that defines the JSON schema node.

Remarks

The JsonDataSource‘s schema nodes are defined by the JsonNode class. However, if a schema node has a collection of child nodes, it is defined by the JsonSchemaNode class. This class has a reference to the JsonNode object and members that define a child node collection.

The JsonSchemaNode‘s Value property specifies a reference to the associated JsonNode object.

See Also