ComponentClassID 属性
Gets or sets the CLSID of a component that is described by the component metadata.
命名空间: Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集: Microsoft.SqlServer.DTSPipelineWrap(在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)
语法
声明
Property ComponentClassID As String
Get
Set
用法
Dim instance As IDTSComponentMetaData100
Dim value As String
value = instance.ComponentClassID
instance.ComponentClassID = value
string ComponentClassID { get; set; }
property String^ ComponentClassID {
String^ get ();
void set (String^ value);
}
abstract ComponentClassID : string with get, set
function get ComponentClassID () : String
function set ComponentClassID (value : String)
属性值
类型:System. . :: . .String
The CLSID or PROGID of the component represented by the IDTSComponentMetaData100.
示例
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.
IDTSComponentMetaData100 component = dataflowTask.ComponentMetaDataCollection.New();
component.ComponentClassID = "DTSTransform.Lookup";
component.Instantiate();
Dim component As IDTSComponentMetaData100 = dataflowTask.ComponentMetaDataCollection.New
component.ComponentClassID = "DTSTransform.Lookup"
component.Instantiate