IDTSInput100.Dangling 属性

定义

public:
 property bool Dangling { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(107)]
public bool Dangling { [System.Runtime.InteropServices.DispId(107)] get; [System.Runtime.InteropServices.DispId(107)] set; }
[<System.Runtime.InteropServices.DispId(107)>]
[<get: System.Runtime.InteropServices.DispId(107)>]
[<set: System.Runtime.InteropServices.DispId(107)>]
member this.Dangling : bool with get, set
Public Property Dangling As Boolean

属性值

如果在执行期间未附加输入,则为 true;否则为 false

属性

注解

当发现未附加的输入时,数据流任务会发布验证错误,因为这通常会阻止任务运行。 将此属性设置为 true 可克服此限制,并允许组件维护未附加的输入,而不会造成验证错误。 相反,如果此属性设置为 true,并且输入附加到输出,则数据流任务将失败验证。

此属性通常在虚拟输入上设置为 true 。 这些类型的输入由支持多个输入的组件使用。 虚拟输入允许组件公开可连接到上游组件的可用输入。 当虚拟输入连接到上游输出时,其 Dangling 属性设置为 false,并使用此属性设置为 true 创建新输入。

适用于