IDTSInput100 Interface

Definição

public interface class IDTSInput100 : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2012::IDTSObject100
[System.Runtime.InteropServices.Guid("730D722C-2E00-4C7A-8641-0D378353A944")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface IDTSInput100 : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2012.IDTSObject100
[<System.Runtime.InteropServices.Guid("730D722C-2E00-4C7A-8641-0D378353A944")>]
[<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
Implementações

Exemplos

O exemplo de código a seguir demonstra um componente adicionando uma entrada à sua coleção no 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  

Comentários

O objeto IDTSInput100 representa um ponto de conexão entre dois componentes e, quando conectado ao IDTSOutput100 componente upstream, estabelece o fluxo de dados entre componentes. Uma conexão entre um IDTSInput100 e um IDTSOutput100 é estabelecida por meio do IDTSPath100 objeto. A entrada representa a EndPoint propriedade do IDTSPath100 objeto.

Em tempo de design, as colunas na IDTSOutputColumnCollection100 saída à qual a entrada está conectada são selecionadas para uso pelo componente. Essas colunas estão disponíveis para o componente durante a execução do componente.

Propriedades

AreInputColumnsAssociatedWithOutputColumns
Buffer
BufferBase
Component
CustomPropertyCollection
Dangling
Description
ErrorOrTruncationOperation
ErrorRowDisposition
ExternalMetadataColumnCollection
HasSideEffects
ID
IdentificationString
InputColumnCollection
IsAttached
IsSorted
Name
ObjectType
SourceLocale
TruncationRowDisposition

Métodos

GetVirtualInput()
SuggestNameBasedLineageIDMappings(Int32[], Int32[])

Aplica-se a