Title here
Summary here
A Json destination defines a json file where data from the flow is inserted.
Name | Description |
---|---|
TInput | Type of ingoing data. |
JsonDestination<MyRow> dest = new JsonDestination<MyRow>("/path/to/file.json");
dest.Wait(); //Wait for all data to arrive
Type | Name | Description |
---|---|---|
string | uri | The source csv file name or uri |
Type | Name | Description |
---|---|---|
string | uri | The source csv file name or uri |
ResourceType | resourceType | The type of resource for the uri (e.g. file or http) |
The content type used when sending the http request content.
Type | Description |
---|---|
string |
The Newtonsoft.Json.JsonSerializer used to deserialize the json into the used data type.
Type | Description |
---|---|
JsonSerializer |
Type | Name | Description |
---|---|---|
TInput | data |