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)
ParameterTypeDescription
jsonPathStringThe path to the JSON file to be used as the data source.

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)
ParameterTypeDescription
jsonStreamStreamThe stream of JSON data 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)
ParameterTypeDescription
jsonPathStringThe path to the JSON file to be used as the data source.
optionsJsonDataLoadOptionsOptions for parsing JSON data.

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)
ParameterTypeDescription
jsonStreamStreamThe stream of JSON data to be used as the data source.
optionsJsonDataLoadOptionsOptions for parsing JSON data.

See Also