Class JsonDestination

A Json destination defines a json file where data from the flow is inserted.

Inherited Members
Namespace: ETLBox.Json
Assembly: ETLBox.Json.dll
Syntax
    public class JsonDestination : JsonDestination<ExpandoObject>, IDataFlowLogging, IDataFlowStreamDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowStreamDestination, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Examples
  JsonDestination<MyRow> dest = new JsonDestination<MyRow>("/path/to/file.json");
                                                                                                                                 dest.Wait(); //Wait for all data to arrive

Constructors

JsonDestination()

Declaration
    public JsonDestination()

JsonDestination(string)

Declaration
    public JsonDestination(string fileName)
Parameters
TypeNameDescription
stringfileName

Implements