IDTSInput100 Интерфейс

Определение

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
Атрибуты
Реализации

Примеры

В следующем примере кода показан компонент, добавляющий входные данные в коллекцию в методе 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 объект. Входные данные представляют 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[])

Применяется к