IDTSComponentMetaData100.ComponentClassID Proprietà

Definizione

Ottiene o imposta il CLSID di un componente descritto dai metadati del componente.

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

Valore della proprietà

CLSID o PROGID del componente rappresentato dall'oggetto IDTSComponentMetaData100.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come viene usata questa proprietà quando si aggiunge a livello di codice un componente all'attività flusso di dati. In questo esempio viene aggiunto il componente Ricerca.

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

Commenti

Questa proprietà indica il tipo di componente creato quando viene richiamato il Instantiate metodo .

Si applica a