IDTSOutput90 Interface
Contains the collection of IDTSOutputColumn90 columns available to downstream components in a graph.
Espacio de nombres: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Ensamblado: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)
Sintaxis
'Declaración
<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
Notas
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.
Ejemplo
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
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
IDTSOutput90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace