IDTSOutputColumnCollection100.GetObjectByID Method (Int32)

 

Applies To: SQL Server 2016 Preview

Retrieves the output column object that has the specified ID from a collection.

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

Syntax

[DispIdAttribute(20)]
IDTSOutputColumn100 GetObjectByID(
    int lID
)
[DispIdAttribute(20)]
IDTSOutputColumn100^ GetObjectByID(
    int lID
)
[<DispIdAttribute(20)>]
abstract GetObjectByID : 
        lID:int -> IDTSOutputColumn100
<DispIdAttribute(20)>
Function GetObjectByID (
    lID As Integer
) As IDTSOutputColumn100

Parameters

  • lID
    Type: System.Int32

    The ID of the output column to retrieve from the collection.

Return Value

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

The IDTSOutputColumn100 object with the specified ID.

Remarks

If the collection does not contain an IDTSOutputColumn100 object with the specified ID, an DTS_E_OBJECTIDNOTFOUND exception occurs.

See Also

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

Return to top