IDTSOutput100 Interface

Contains the collection of IDTSOutputColumn100 columns available to downstream components in a graph.

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

Syntax

'Declaration
<GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE")> _
Public Interface IDTSOutput100 _
    Inherits IDTSObject100
'Usage
Dim instance As IDTSOutput100
[GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE")]
public interface IDTSOutput100 : IDTSObject100
[GuidAttribute(L"2D1508D1-9998-4968-B608-D527CBEA99EE")]
public interface class IDTSOutput100 : IDTSObject100
[<GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE")>]
type IDTSOutput100 =  
    interface
        interface IDTSObject100
    end
public interface IDTSOutput100 extends IDTSObject100

Remarks

The IDTSOutput100 object contains the collection of IDTSOutputColumn100 columns exposed by a data flow component. The output is connected to the IDTSInput100 of a downstream component to establish the flow of data between two components.

An output can be either synchronous to an IDTSInput100 object, or asynchronous, and is specified by the SynchronousInputID property.

The columns in the output column collection are available to downstream components. Columns are added and removed from the collection at design time.

Examples

The following code example demonstrates a component that creates an IDTSOutput100 that is synchronous to its input during a call to the ProvideComponentProperties method.

public override void ProvideComponentProperties()
{
    IDTSInput100 input = ComponentMetaData.InputCollection.New();
    input.Name = "Input";

    IDTSOutput100 output = ComponentMetaData.OutputCollection.New();
    output.Name = "Output";
    output.SynchronousInputID = input.ID;
}
Public Overrides Sub ProvideComponentProperties() 
 Dim input As IDTSInput100 = ComponentMetaData.InputCollection.New 
 input.Name = "Input" 
 Dim output As IDTSOutput100 = ComponentMetaData.OutputCollection.New 
 output.Name = "Output" 
 output.SynchronousInputID = input.ID 
End Sub