IDTSComponentMetaData100.ComponentClassID Propiedad

Definición

public:
 property System::String ^ ComponentClassID { System::String ^ get(); void set(System::String ^ value); };
[System.Runtime.InteropServices.DispId(101)]
public string ComponentClassID { [System.Runtime.InteropServices.DispId(101)] get; [System.Runtime.InteropServices.DispId(101)] set; }
[<System.Runtime.InteropServices.DispId(101)>]
[<get: System.Runtime.InteropServices.DispId(101)>]
[<set: System.Runtime.InteropServices.DispId(101)>]
member this.ComponentClassID : string with get, set
Public Property ComponentClassID As String

Valor de propiedad

El CLSID o PROGID del componente representado por el IDTSComponentMetaData100.

Atributos

Ejemplos

El siguiente ejemplo de código muestra cómo se utiliza esta propiedad al añadir programáticamente un componente a la tarea de flujo de datos. En este ejemplo, se añade el componente Lookup.

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

Comentarios

Esta propiedad indica el tipo de componente creado cuando se invoca el método Instanciate.

Se aplica a