IDTSOutput100.Dangling Property

Definition

Gets or sets a value that notifies the data flow engine that the IDTSOutput100 can be unattached.

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

Property Value

true if the output is unattached during execution; otherwise, false.

Attributes

Remarks

The data flow task posts a validation error when an unattached output is discovered, since this normally prevents the task from running. Setting this property to true overcomes this restriction and allows components to maintain unattached outputs without causing a validation error. In contrast, if this property is set to true, and the output is attached to an input, the data flow task fails validation.

Applies to