다음을 통해 공유


IDTSComponentMetaDataCollection90.New Method

Creates a new IDTSComponentMetaData90 object and adds it to an IDTSComponentMetaDataCollection90 collection.

네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)

구문

‘선언
<DispIdAttribute(14)> _
Function New As IDTSComponentMetaData90
[DispIdAttribute(14)] 
IDTSComponentMetaData90 New ()
[DispIdAttribute(14)] 
IDTSComponentMetaData90^ New ()
/** @attribute DispIdAttribute(14) */ 
IDTSComponentMetaData90 New ()
DispIdAttribute(14) 
function New () : IDTSComponentMetaData90

반환 값

The newly created IDTSComponentMetaData90 object.

주의

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

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.
                IDTSComponentMetaData90 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();
            }
        }
    }
}

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

IDTSComponentMetaDataCollection90 Interface
IDTSComponentMetaDataCollection90 Members
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace