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.
public class JsonSource : JsonSource<ExpandoObject>, IDataFlowStreamSource<ExpandoObject>, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowStreamSource, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent, ILoggableTask
JsonSource<POCO> source = new JsonSource<POCO>("https://jsonplaceholder.typicode.com/todos");
public JsonSource()
public JsonSource(string uri)
Type | Name | Description |
---|---|---|
string | uri | The source json file name or uri |
public JsonSource(string uri, ResourceType resourceType)
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) |