Udostępnij przez


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

'Deklaracja
<GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE")> _
<TypeLibTypeAttribute(4160)> _
Public Interface IDTSOutput100
    Inherits IDTSObject100
[GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE")] 
[TypeLibTypeAttribute(4160)] 
public interface IDTSOutput100 : IDTSObject100
[GuidAttribute(L"2D1508D1-9998-4968-B608-D527CBEA99EE")] 
[TypeLibTypeAttribute(4160)] 
public interface class IDTSOutput100 : IDTSObject100
/** @attribute GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE") */ 
/** @attribute TypeLibTypeAttribute(4160) */ 
public interface IDTSOutput100 extends IDTSObject100
GuidAttribute("2D1508D1-9998-4968-B608-D527CBEA99EE") 
TypeLibTypeAttribute(4160) 
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.

Example

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

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.