PipelineComponent.InsertOutput Method (DTSInsertPlacement, Int32)

 

Applies To: SQL Server 2016 Preview

Adds a new IDTSOutput100 object

Namespace:   Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)

Syntax

[CLSCompliantAttribute(false)]
public virtual IDTSOutput100 InsertOutput(
    DTSInsertPlacement insertPlacement,
    int outputID
)
public:
[CLSCompliantAttribute(false)]
virtual IDTSOutput100^ InsertOutput(
    DTSInsertPlacement insertPlacement,
    int outputID
)
[<CLSCompliantAttribute(false)>]
abstract InsertOutput : 
        insertPlacement:DTSInsertPlacement *
        outputID:int -> IDTSOutput100
[<CLSCompliantAttribute(false)>]
override InsertOutput : 
        insertPlacement:DTSInsertPlacement *
        outputID:int -> IDTSOutput100
<CLSCompliantAttribute(False)>
Public Overridable Function InsertOutput (
    insertPlacement As DTSInsertPlacement,
    outputID As Integer
) As IDTSOutput100

Parameters

Return Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSOutput100

The newly created IDTSInput100 object

Remarks

This method inserts a new IDTSOutput100 object before or after the specified input object specified by the outputID parameter during the NewAt method.

If outputID equals zero, the new IDTSOutput100 object is added at the start of the collection.

See Also

PipelineComponent Class
Microsoft.SqlServer.Dts.Pipeline Namespace

Return to top