PipelineComponent.ComponentMetaData Property
Applies To: SQL Server 2016 Preview
Gets the IDTSComponentMetaData100 for a component.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
[CLSCompliantAttribute(false)]
public IDTSComponentMetaData100 ComponentMetaData { get; }
public:
[CLSCompliantAttribute(false)]
property IDTSComponentMetaData100^ ComponentMetaData {
IDTSComponentMetaData100^ get();
}
[<CLSCompliantAttribute(false)>]
member ComponentMetaData : IDTSComponentMetaData100 with get
<CLSCompliantAttribute(False)>
Public ReadOnly Property ComponentMetaData As IDTSComponentMetaData100
Property Value
Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSComponentMetaData100
The IDTSComponentMetaData100 of the data flow component.
Remarks
Components are described and persisted by their ComponentMetaData. In addition to identifying a component by the ComponentClassID property, the metadata contains the collection of IDTSInput100, IDTSOutput100, IDTSInputColumn100 and IDTSOutputColumn100 objects, in addition to any IDTSCustomProperty100 objects defined by the component.
During package design, the ComponentMetaData is modified, validated, and finally persisted in the package XML.
See Also
PipelineComponent Class
Microsoft.SqlServer.Dts.Pipeline Namespace
Return to top