IDTSOutput90 Interface

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

Espace de noms: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)

Syntaxe

'Déclaration
<GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")> _
<TypeLibTypeAttribute(4160)> _
Public Interface IDTSOutput90
    Inherits IDTSObject90
[GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6")] 
[TypeLibTypeAttribute(4160)] 
public interface IDTSOutput90 : IDTSObject90
[GuidAttribute(L"5A3F4E89-4A68-4D16-A893-366A39AF9AE6")] 
[TypeLibTypeAttribute(4160)] 
public interface class IDTSOutput90 : IDTSObject90
/** @attribute GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6") */ 
/** @attribute TypeLibTypeAttribute(4160) */ 
public interface IDTSOutput90 extends IDTSObject90
GuidAttribute("5A3F4E89-4A68-4D16-A893-366A39AF9AE6") 
TypeLibTypeAttribute(4160) 
public interface IDTSOutput90 extends IDTSObject90

Notes

The IDTSOutput90 object contains the collection of IDTSOutputColumn90 columns exposed by a data flow component. The output is connected to the IDTSInput90 of a downstream component to establish the flow of data between two components.

An output can be either synchronous to an IDTSInput90 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.

Exemple

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

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

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

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

IDTSOutput90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace