IDTSComponentMetaData100.OutputCollection Property

 

Applies To: SQL Server 2016 Preview

Gets the collection of IDTSOutput100 objects defined by a component.

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

Syntax

[DispIdAttribute(103)]
IDTSOutputCollection100 OutputCollection {
    [DispIdAttribute(103)]
    get;
}
[DispIdAttribute(103)]
property IDTSOutputCollection100^ OutputCollection {
    [DispIdAttribute(103)]
    IDTSOutputCollection100^ get();
}
[<DispIdAttribute(103)>]
abstract OutputCollection : IDTSOutputCollection100 with get
<DispIdAttribute(103)>
ReadOnly Property OutputCollection As IDTSOutputCollection100

Property Value

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

The IDTSOutputCollection100 of the component.

Remarks

This collection contains the IDTSOutput100 objects defined by the component. It can be used to access, add, or remove output objects from the collection. New output objects are created and added to the collection by calling the New method of the collection. When programmatically modifying a component in a data flow task, the collection should not be modified directly. Instead, the methods of the design-time instance of the component, CManagedComponentWrapperClass, should be called.

See Also

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

Return to top