Class XmlDestination

A Xml destination defines a xml file where data from the flow is inserted.

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

Constructors

XmlDestination()

Declaration
    public XmlDestination()

XmlDestination(string)

Declaration
    public XmlDestination(string filename)
Parameters
TypeNameDescription
stringfilename

XmlDestination(string, ResourceType)

Declaration
    public XmlDestination(string uri, ResourceType resourceType)
Parameters
TypeNameDescription
stringuri
ResourceTyperesourceType

Implements