IDTSInput100 인터페이스

정의

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
특성
구현

예제

다음 코드 예제에서는 메서드의 컬렉션 ProvideComponentProperties 에 입력을 추가하는 구성 요소를 보여 줍니다.

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  

설명

IDTSInput100 개체는 두 구성 요소 간의 연결점을 나타내며 업스트림 구성 요소에 연결된 IDTSOutput100 경우 구성 요소 간의 데이터 흐름을 설정합니다. IDTSInput100과 개체 IDTSOutput100 를 통해 IDTSPath100 연결이 설정됩니다. 입력은 개체의 EndPointIDTSPath100 속성을 나타냅니다.

디자인 타임에 입력이 IDTSOutputColumnCollection100 연결된 출력의 열이 구성 요소에서 사용하도록 선택됩니다. 그런 다음 구성 요소를 실행하는 동안 구성 요소에서 이러한 열을 사용할 수 있습니다.

속성

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

메서드

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

적용 대상