Title here
Summary here
Reads data from a json source. This can be any http resource or a file. By default, data is pulled via httpclient. Use the ResourceType property to read data from a file.
Name | Description |
---|---|
TOutput | Type of outgoing data. |
JsonSource<POCO> source = new JsonSource<POCO>("https://jsonplaceholder.typicode.com/todos");
Type | Name | Description |
---|---|---|
string | uri | The source json file name or uri |
Type | Name | Description |
---|---|---|
string | uri | The source json file name or uri |
ResourceType | resourceType | Specifies if data is loaded from a file, a web endpoint or other storage types (e.g. Azure Blob Storage) |
The Newtonsoft.Json.JsonSerializer used to deserialize the json into the used data type.
Type | Description |
---|---|
JsonSerializer |
By default, the first array which is encountered in the json is autmatically read. If you want a different behaviour set this to the property name of the array which you like to process.
Type | Description |
---|---|
string |