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 オブジェクトは、2 つのコンポーネント間の接続ポイントを表し、アップストリーム コンポーネントの接続時に IDTSOutput100 、コンポーネント間のデータ フローを確立します。 IDTSInput100 と AN の間の IDTSOutput100 接続は、オブジェクトを IDTSPath100 介して確立されます。 入力は、EndPoint オブジェクトの IDTSPath100 プロパティを表します。

デザイン時に、入力の接続先である出力の 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[])

適用対象