IDTSPath100::StartPoint Property

 

Gets or sets the IDTSOutput100 object associated with a path.

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

[DispIdAttribute(101)]
property IDTSOutput100^ StartPoint {
	[DispIdAttribute(101)]
	IDTSOutput100^ get();
	[DispIdAttribute(101)]
	void set(IDTSOutput100^ value);
}

Property Value

Type: Microsoft.SqlServer.Dts.Pipeline.Wrapper::IDTSOutput100^

The IDTSOutput100 object that is the upstream component in a path.

You should avoid setting the StartPoint by assigning an input object to this property because the affected component will not be notified. Instead, call the AttachPathAndPropagateNotifications method, which sets the StartPoint and EndPoint properties, and notifies the respective components.

Return to top
Show: