Поделиться через


IDTSComponentMetaData90.ComponentClassID Property

Gets or sets the CLSID of a component that is described by the component metadata.

Пространство имен: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Сборка: Microsoft.SqlServer.DTSPipelineWrap (in microsoft.sqlserver.dtspipelinewrap.dll)

Синтаксис

'Декларация
<DispIdAttribute(101)> _
Property ComponentClassID As String
[DispIdAttribute(101)] 
string ComponentClassID { get; set; }
[DispIdAttribute(101)] 
property String^ ComponentClassID {
    String^ get ();
    void set ([InAttribute] String^ bstrComponentClassID);
}
/** @property */
/** @attribute DispIdAttribute(101) */ 
String get_ComponentClassID ()

/** @property */
/** @attribute DispIdAttribute(101) */ 
void set_ComponentClassID (/** @attribute InAttribute() */ String bstrComponentClassID)
DispIdAttribute(101) 
function get ComponentClassID () : String

DispIdAttribute(101) 
function set ComponentClassID (bstrComponentClassID : String)

Значение свойства

The CLSID or PROGID of the component represented by the IDTSComponentMetaData90.

Замечания

This property indicates the type of component created when the Instantiate method is invoked.

Пример

The following code sample shows how this property is used when programmatically adding a component to the data flow task. In this example, the Lookup component is added.

IDTSComponentMetaData90 component = dataflowTask.ComponentMetaDataCollection.New();
component.ComponentClassID = "DTSTransform.Lookup";
component.Instantiate();
Dim component As IDTSComponentMetaData90 = dataflowTask.ComponentMetaDataCollection.New 
component.ComponentClassID = "DTSTransform.Lookup" 
component.Instantiate

Синхронизация потоков

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.

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

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