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

JsonNode(String, Nullable<Boolean>, JsonNodeType, Type) Constructor

Creates a new instance of the JsonNode class and sets its properties to the values passed as the parameters.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v19.1.dll

Declaration

public JsonNode(
    string name,
    bool? selected,
    JsonNodeType nodeType,
    Type type
)

Parameters

Name Type Description
name String

The name of the data source field that the current JsonNode object defines.

selected Nullable<Boolean>

Specifies whether to include the JSON object’s field, which the current JsonNode object defines, to the JsonDataSource‘s data schema.

nodeType JsonNodeType

The type of the JSON object’s node that the current JsonNode object defines.

type Type

The type of data stored in the data source field that the current JsonNode object defines.

See Also