Share via


IDTSOutputColumnCollection100 接口

Contains a collection of IDTSOutputColumn100 columns.

命名空间:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集:  Microsoft.SqlServer.DTSPipelineWrap(在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)

语法

声明
<GuidAttribute("B5F06F4E-50E9-4749-9D59-F9AA86C11930")> _
Public Interface IDTSOutputColumnCollection100 _
    Inherits IEnumerable
用法
Dim instance As IDTSOutputColumnCollection100
[GuidAttribute("B5F06F4E-50E9-4749-9D59-F9AA86C11930")]
public interface IDTSOutputColumnCollection100 : IEnumerable
[GuidAttribute(L"B5F06F4E-50E9-4749-9D59-F9AA86C11930")]
public interface class IDTSOutputColumnCollection100 : IEnumerable
[<GuidAttribute("B5F06F4E-50E9-4749-9D59-F9AA86C11930")>]
type IDTSOutputColumnCollection100 =  
    interface
        interface IEnumerable
    end
public interface IDTSOutputColumnCollection100 extends IEnumerable

IDTSOutputColumnCollection100 类型公开以下成员。

属性

  名称 说明
公共属性 Count Gets the number of IDTSOutput100 columns in the collection.
公共属性 Item Gets the IDTSOutputColumn100 specified by the Index parameter.

页首

方法

  名称 说明
公共方法 FindObjectByID Locates the requested object in a collection by its ID.
公共方法 FindObjectIndexByID Locates the index of the requested object in the collection by its ID.
公共方法 GetEnumerator() () () () (从 IEnumerable 继承。)
公共方法 GetEnumerator() () () () Returns an enumerator that can iterate through an output column collection.
公共方法 GetObjectByID Retrieves the output column object that has the specified ID from a collection.
公共方法 GetObjectIndexByID Retrieves the location of an output column in a collection.
公共方法 GetOutputColumnByLineageID Retrieves an output column object with the specified lineage ID from a collection.
公共方法 New Creates an output column object and adds it to a collection.
公共方法 NewAt Creates a new output column object and adds it to a collection at the specified index.
公共方法 RemoveAll Deletes all the output column objects from a collection.
公共方法 RemoveObjectByID Deletes the output column object with the specified ID from a collection.
公共方法 RemoveObjectByIndex Removes the IDTSOutputColumn100 object at the specified location in a collection.
公共方法 SetIndex Moves an output column to a new location in a collection.

页首

注释

The IDTSOutputColumnCollection100 contains a collection of IDTSOutputColumn100 objects. The columns in this collection represent the columns that a component makes available to downstream components.

The component that contains the collection can be a source component, which means that it adds the columns based on an external data source, or it can be a transformation, which means that it creates columns based on the columns it receives in its IDTSInput100.