IDTSPath100.ID Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the ID of an IDTSPath100 object.

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

Syntax

[DispIdAttribute(11)]
int ID {
    [DispIdAttribute(11)]
    get;
    [DispIdAttribute(11)]
    set;
}
[DispIdAttribute(11)]
property int ID {
    [DispIdAttribute(11)]
    int get();
    [DispIdAttribute(11)]
    void set(int value);
}
[<DispIdAttribute(11)>]
abstract ID : int with get, set
<DispIdAttribute(11)>
Property ID As Integer

Property Value

Type: System.Int32

The unique integer ID of the IDTSPath100 object.

Implements

IDTSObject100.ID

Remarks

The ID property uniquely identifies the path from other objects in the layout of the data flow task. It is assigned by the data flow engine during creation of the path, and is treated as a read-only property.

See Also

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

Return to top