Share via


IDTSPath100 接口

Represents a connection between two components.

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

语法

声明
<GuidAttribute("172066DC-24EE-4569-B224-17A457249876")> _
Public Interface IDTSPath100 _
    Inherits IDTSObject100
用法
Dim instance As IDTSPath100
[GuidAttribute("172066DC-24EE-4569-B224-17A457249876")]
public interface IDTSPath100 : IDTSObject100
[GuidAttribute(L"172066DC-24EE-4569-B224-17A457249876")]
public interface class IDTSPath100 : IDTSObject100
[<GuidAttribute("172066DC-24EE-4569-B224-17A457249876")>]
type IDTSPath100 =  
    interface
        interface IDTSObject100
    end
public interface IDTSPath100 extends IDTSObject100

IDTSPath100 类型公开以下成员。

属性

  名称 说明
公共属性 Description Gets or sets the description of an IDTSObject100. (从 IDTSObject100 继承。)
公共属性 Description Gets or sets the description of the IDTSPath100 object.
公共属性 EndPoint Gets or sets the IDTSInput100 object associated with a path.
公共属性 ID Gets or sets the ID of an IDTSObject100object. (从 IDTSObject100 继承。)
公共属性 ID Gets or sets the ID of an IDTSPath100 object.
公共属性 IdentificationString Gets a string that uniquely identifies an IDTSObject100. (从 IDTSObject100 继承。)
公共属性 IdentificationString Gets a unique string that identifies an IDTSPath100 object.
公共属性 Name Gets or sets the name of an IDTSObject100 object. (从 IDTSObject100 继承。)
公共属性 Name Gets or sets the string identifier of an IDTSPath100 object.
公共属性 ObjectType Gets the ObjectType property of an IDTSObject100. (从 IDTSObject100 继承。)
公共属性 ObjectType Returns a value from the DTSObjectType enumeration.
公共属性 StartPoint Gets or sets the IDTSOutput100 object associated with a path.
公共属性 Visualized Sets a value indicating that the user has attached a data viewer to this path in SSIS Designer.

页首

方法

  名称 说明
公共方法 AttachPathAndPropagateNotifications Establishes a path between two components and notifies the affected components.

页首

注释

Path objects are created to establish the flow of data between the IDTSOutput100 of an upstream component and the IDTSInput100 of another component. A path contains a single output object represented as the StartPoint, and a single input, which is the EndPoint of the path. A path between two components is established in a two-step process. First, create the path by calling New on the path collection of the IDTSComponentMetaData100 object. Second, establish the path by calling AttachPathAndPropagateNotifications on the path itself. This method establishes the path and notifies the affected components of its existence.

The columns of the StartPoint are subsequently mapped to the EndPoint by calling SetUsageType.

示例

The following code example demonstrates how to create a new IDTSPath100 object, and then attach the output of the upstream component to the input of the downstream component.

public IDTSPath100 EstablishPath( MainPipe mp , IDTSOutput100 start , IDTSInput100 end )
{
IDTSPath100 path = mp.PathCollection.New();
path.AttachPathAndPropagateNotifications( start, end );
return path;
}
Public Function EstablishPath(ByVal mp As MainPipe, ByVal start As IDTSOutput100, ByVal end As IDTSInput100) As IDTSPath100 
 Dim path As IDTSPath100 = mp.PathCollection.New 
 path.AttachPathAndPropagateNotifications(start, end) 
 Return path 
End Function