IDTSInput100 Interfaz

Definición

public interface class IDTSInput100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2014::IDTSObject100
[System.Runtime.InteropServices.Guid("A835ED14-7535-42F7-A165-A11E7C409817")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSInput100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.IDTSObject100
[<System.Runtime.InteropServices.Guid("A835ED14-7535-42F7-A165-A11E7C409817")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type IDTSInput100 = interface
    interface IDTSObject100
Public Interface IDTSInput100
Implements IDTSObject100
Atributos
Implementaciones

Ejemplos

El siguiente ejemplo de código demuestra un componente que añade una entrada a su colección en el ProvideComponentProperties método.

using System;  
using Microsoft.SqlServer.Dts.Pipeline;  
public class DtsSampleComponent : PipelineComponent  
{   
public override void ProvideComponentProperties()  
{  
IDTSInput100 input = ComponentMetaData.InputCollection.New();  
input.Name = "SampleComponentInput0";  
}  
}  
Imports System   
Imports Microsoft.SqlServer.Dts.Pipeline   

Public Class DtsSampleComponent   
Inherits PipelineComponent   

 Public Overloads Overrides Sub ProvideComponentProperties()   
   Dim input As IDTSInput100 = ComponentMetaData.InputCollection.New   
   input.Name = "SampleComponentInput0"   
 End Sub   
End Class  

Comentarios

El objeto IDTSInput100 representa un punto de conexión entre dos componentes y, cuando se conecta a un IDTSOutput100 componente aguas arriba, establece el flujo de datos entre componentes. Se establece una conexión entre un IDTSInput100 y un IDTSOutput100 a través del IDTSPath100 objeto. La entrada representa la EndPoint propiedad del IDTSPath100 objeto.

En el momento de diseño, las columnas de la IDTSOutputColumnCollection100 salida a la que está conectado la entrada se seleccionan para su uso por el componente. Estas columnas están disponibles para el componente durante la ejecución del componente.

Se aplica a