IDTSOutput100.IsErrorOut Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a value that indicates whether an IDTSOutput100 object is an error output.

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

Syntax

[DispIdAttribute(108)]
bool IsErrorOut {
    [DispIdAttribute(108)]
    get;
    [DispIdAttribute(108)]
    set;
}
[DispIdAttribute(108)]
property bool IsErrorOut {
    [DispIdAttribute(108)]
    bool get();
    [DispIdAttribute(108)]
    void set(bool value);
}
[<DispIdAttribute(108)>]
abstract IsErrorOut : bool with get, set
<DispIdAttribute(108)>
Property IsErrorOut As Boolean

Property Value

Type: System.Boolean

true if the IDTSOutput100 is an error output; otherwise, false. The default is false.

Remarks

Components set the IsErrorOut property to indicate that the IDTSOutput100 is an error output. When true, components direct rows from the PipelineBuffer to the error output when an error or truncation occurs as the component is processing the columns in the output.

See Also

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

Return to top