IDTSInput100 Interfaccia

Definizione

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
Attributi
Implementazioni

Esempio

Nell'esempio di codice seguente viene illustrato un componente che aggiunge un input alla raccolta nel ProvideComponentProperties metodo .

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  

Commenti

L'oggetto IDTSInput100 rappresenta un punto di connessione tra due componenti e, quando è connesso a IDTSOutput100 di un componente upstream, stabilisce il flusso di dati tra i componenti. Una connessione tra idTSInput100 e un IDTSOutput100 viene stabilita tramite l'oggetto IDTSPath100 . L'input rappresenta la EndPoint proprietà dell'oggetto IDTSPath100 .

In fase di progettazione, le colonne nell'oggetto IDTSOutputColumnCollection100 dell'output a cui è connesso l'input vengono selezionate per l'uso da parte del componente. Queste colonne sono quindi disponibili per il componente durante l'esecuzione del componente.

Proprietà

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

Metodi

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

Si applica a