IDTSComponentMetaDataCollection100.New Yöntemi
Oluşturur Yeni bir IDTSComponentMetaData100 ekler ve nesne bir IDTSComponentMetaDataCollection100 koleksiyon.
Ad Alanı: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Derleme: Microsoft.SqlServer.DTSPipelineWrap (Microsoft.SqlServer.DTSPipelineWrap içinde.dll)
Sözdizimi
'Bildirim
Function New As IDTSComponentMetaData100
'Kullanım
Dim instance As IDTSComponentMetaDataCollection100
Dim returnValue As IDTSComponentMetaData100
returnValue = instance.New()
IDTSComponentMetaData100 New()
IDTSComponentMetaData100^ New()
abstract New : unit -> IDTSComponentMetaData100
function New() : IDTSComponentMetaData100
Dönüş Değeri
Tür: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100
Yeni oluşturulan IDTSComponentMetaData100 nesne.
Açıklamalar
Veri akışı bileşenleri eklenen MainPipe çağırarak sınıfı New yöntem, ComponentMetaDataCollection.
Örnekler
Aşağıdaki kod örneği çağırarak bir ole db kaynağı bileşeni için veri akışı görevi ekler New yöntem, MainPipe WalkTree
using System;
using Microsoft.SqlServer.Dts.Runtime;
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;
namespace Microsoft.Samples.SqlServer.Dts
{
class CreateComponent
{
[STAThread]
static void Main(string[] args)
{
// Create the package.
Package p = new Package();
// Add the data flow task to the package.
MainPipe dataFlowTask = ((TaskHost)p.Executables.Add("SSIS.Pipeline.2")).InnerObject as MainPipe;
if (dataFlowTask != null)
{
// Add a component to the data flow task.
IDTSComponentMetaData100 metaData = dataFlowTask.ComponentMetaDataCollection.New();
// Set the class ID of the component.
metaData.ComponentClassID = "DTSAdapter.OLEDBSource.1";
// Create an instance of the component.
CManagedComponentWrapper wrapper = metaData.Instantiate();
// Initialize the component.
wrapper.ProvideComponentProperties();
}
}
}
}