IDTSOutput100 Interfaz

Definición

public interface class IDTSOutput100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2012::IDTSObject100
[System.Runtime.InteropServices.Guid("89B8E306-7C2A-472F-8850-7202B4DAF17B")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSOutput100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2012.IDTSObject100
[<System.Runtime.InteropServices.Guid("89B8E306-7C2A-472F-8850-7202B4DAF17B")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSOutput100 = interface
    interface IDTSObject100
Public Interface IDTSOutput100
Implements IDTSObject100
Atributos
Implementaciones

Ejemplos

En el ejemplo de código siguiente se muestra un componente que crea un IDTSOutput100 sincrónico a su entrada durante una llamada al ProvideComponentProperties método .

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  

Comentarios

El objeto IDTSOutput100 contiene la colección de IDTSOutputColumn100 columnas expuestas por un componente de flujo de datos. La salida está conectada al IDTSInput100 de un componente de bajada para establecer el flujo de datos entre dos componentes.

Una salida puede ser sincrónica a un IDTSInput100 objeto, o asincrónico, y la propiedad especifica SynchronousInputID .

Las columnas de la colección de columnas de salida están disponibles para los componentes de nivel inferior. Las columnas se agregan y quitan de la colección en tiempo de diseño.

Propiedades

Buffer
Component
CustomPropertyCollection
Dangling
DeleteOutputOnPathDetached
Description
ErrorOrTruncationOperation
ErrorRowDisposition
ExclusionGroup
ExternalMetadataColumnCollection
HasSideEffects
ID
IdentificationString
IsAttached
IsErrorOut
IsSorted
Name
ObjectType
OutputColumnCollection
SynchronousInputID
TruncationRowDisposition

Se aplica a