IDTSPath100.EndPoint Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the IDTSInput100 object associated with a path.

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

Syntax

[DispIdAttribute(102)]
IDTSInput100 EndPoint {
    [DispIdAttribute(102)]
    get;
    [DispIdAttribute(102)]
    set;
}
[DispIdAttribute(102)]
property IDTSInput100^ EndPoint {
    [DispIdAttribute(102)]
    IDTSInput100^ get();
    [DispIdAttribute(102)]
    void set(IDTSInput100^ value);
}
[<DispIdAttribute(102)>]
abstract EndPoint : IDTSInput100 with get, set
<DispIdAttribute(102)>
Property EndPoint As IDTSInput100

Property Value

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

The IDTSInput100 of the component downstream in the path.

Remarks

You should avoid setting the EndPoint by assigning an input object to this property because the components affected by the establishment of the path are not notified. Instead, call AttachPathAndPropagateNotifications.

See Also

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

Return to top