JsonDataSource

JsonDataSource(string)

Creates a new data source with data from a JSON file using default options for parsing JSON data.

public JsonDataSource(string jsonPath)
Parameter Type Description
jsonPath String The path to the JSON file to be used as the data source.

See Also


JsonDataSource(string, JsonDataLoadOptions)

Creates a new data source with data from a JSON file using the specified options for parsing JSON data.

public JsonDataSource(string jsonPath, JsonDataLoadOptions options)
Parameter Type Description
jsonPath String The path to the JSON file to be used as the data source.
options JsonDataLoadOptions Options for parsing JSON data.

See Also


JsonDataSource(Stream)

Creates a new data source with data from a JSON stream using default options for parsing JSON data.

public JsonDataSource(Stream jsonStream)
Parameter Type Description
jsonStream Stream The stream of JSON data to be used as the data source.

See Also


JsonDataSource(Stream, JsonDataLoadOptions)

Creates a new data source with data from a JSON stream using the specified options for parsing JSON data.

public JsonDataSource(Stream jsonStream, JsonDataLoadOptions options)
Parameter Type Description
jsonStream Stream The stream of JSON data to be used as the data source.
options JsonDataLoadOptions Options for parsing JSON data.

See Also