JsonDataSource
JsonDataSource constructor. Creates a new data source with data from a JSON file using default options for parsing JSON data.
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
- class JsonDataSource
- namespace Wordize.Reporting
- assembly Wordize
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
- class JsonDataSource
- namespace Wordize.Reporting
- assembly Wordize
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
- class JsonDataLoadOptions
- class JsonDataSource
- namespace Wordize.Reporting
- assembly Wordize
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
- class JsonDataLoadOptions
- class JsonDataSource
- namespace Wordize.Reporting
- assembly Wordize