DataFlow.AppendRowsAsync(List<DataFlow>) Method

Definition

Asynchronously appends the records in the specified dataflows to the current one. If the schemas of the dataflows are distinct, this will result in records with different schemas.

public:
 System::Threading::Tasks::Task<Microsoft::DataPrep::Common::DataFlow ^> ^ AppendRowsAsync(System::Collections::Generic::List<Microsoft::DataPrep::Common::DataFlow ^> ^ dataflows);
public System.Threading.Tasks.Task<Microsoft.DataPrep.Common.DataFlow> AppendRowsAsync(System.Collections.Generic.List<Microsoft.DataPrep.Common.DataFlow> dataflows);
member this.AppendRowsAsync : System.Collections.Generic.List<Microsoft.DataPrep.Common.DataFlow> -> System.Threading.Tasks.Task<Microsoft.DataPrep.Common.DataFlow>
Public Function AppendRowsAsync (dataflows As List(Of DataFlow)) As Task(Of DataFlow)

Parameters

dataflows
List<DataFlow>

The dataflows to append.

Returns

Applies to