Skip to main content
All docs
V26.1
  • JsonSchemaNode(String, Nullable<Boolean>, JsonNodeType) Constructor

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

    Namespace: DevExpress.DataAccess.Json

    Assembly: DevExpress.DataAccess.v26.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    public JsonSchemaNode(
        string name,
        bool? selected,
        JsonNodeType nodeType
    )

    Parameters

    Name Type Description
    name String

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

    selected Nullable<Boolean>

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

    nodeType JsonNodeType

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

    See Also