Partager via


Méthode IDTSComponentMetaDataCollection100.New

Creates a new IDTSComponentMetaData100 object and adds it to an IDTSComponentMetaDataCollection100 collection.

Espace de noms :  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly :  Microsoft.SqlServer.DTSPipelineWrap (en Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntaxe

'Déclaration
Function New As IDTSComponentMetaData100
'Utilisation
Dim instance As IDTSComponentMetaDataCollection100 
Dim returnValue As IDTSComponentMetaData100 

returnValue = instance.New()
IDTSComponentMetaData100 New()
IDTSComponentMetaData100^ New()
abstract New : unit -> IDTSComponentMetaData100
function New() : IDTSComponentMetaData100

Valeur de retour

Type : Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100
The newly created IDTSComponentMetaData100 object.

Notes

Data flow components are added to the MainPipe class by calling the New method of the ComponentMetaDataCollection.

Exemples

The following code example adds an OLE DB Source component to a data flow task by calling the New method of the MainPipe class.

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("DTS.Pipeline.1")).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();
            }
        }
    }
}

Voir aussi

Référence

IDTSComponentMetaDataCollection100 Interface

Espace de noms Microsoft.SqlServer.Dts.Pipeline.Wrapper