IDTSComponentMetaData100.CustomPropertyCollection Property

 

Applies To: SQL Server 2016 Preview

Gets the collection of custom properties exposed by a component.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(105)]
IDTSCustomPropertyCollection100 CustomPropertyCollection {
    [DispIdAttribute(105)]
    get;
}
[DispIdAttribute(105)]
property IDTSCustomPropertyCollection100^ CustomPropertyCollection {
    [DispIdAttribute(105)]
    IDTSCustomPropertyCollection100^ get();
}
[<DispIdAttribute(105)>]
abstract CustomPropertyCollection : IDTSCustomPropertyCollection100 with get
<DispIdAttribute(105)>
ReadOnly Property CustomPropertyCollection As IDTSCustomPropertyCollection100

Property Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper.IDTSCustomPropertyCollection100

The collection of custom properties exposed by a component.

Remarks

The custom property collection contains the IDTSCustomProperty100 objects added to the collection by the component. Developers who are programmatically building or modifying data flow components should not set the values of these properties directly, but instead should call the SetComponentProperty method of the design-time instance of the component.

See Also

IDTSComponentMetaData100 Interface
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top