IDTSInput100 Antarmuka
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
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
- Atribut
- Penerapan
Contoh
Contoh kode berikut menunjukkan komponen yang menambahkan input ke koleksinya dalam ProvideComponentProperties metode .
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
Keterangan
Objek IDTSInput100 mewakili titik koneksi antara dua komponen, dan, ketika terhubung ke IDTSOutput100 komponen upstram, menetapkan aliran data antar komponen. Koneksi antara IDTSInput100 dan dibuat IDTSOutput100 melalui IDTSPath100 objek . Input mewakili EndPoint properti IDTSPath100 objek .
Pada waktu desain, kolom di IDTSOutputColumnCollection100 output yang terhubung dengan input dipilih untuk digunakan oleh komponen. Kolom ini kemudian tersedia untuk komponen selama eksekusi komponen.
Properti
Metode
| GetVirtualInput() | |
| SuggestNameBasedLineageIDMappings(Int32[], Int32[]) |