IDTSBreakpointSite100.SuspendRequired Property

 

Applies To: SQL Server 2016 Preview

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets a Boolean that indicates if tasks should suspend when they encounter a breakpoint. This value is set by the runtime engine for tasks and containers when a breakpoint is encountered.

Namespace:   Microsoft.SqlServer.Dts.Runtime.Wrapper
Assembly:  Microsoft.SqlServer.DTSRuntimeWrap (in Microsoft.SqlServer.DTSRuntimeWrap.dll)

Syntax

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

Property Value

Type: System.Boolean

true if the task suspends when it encounters a breakpoint; otherwise, false.

Implements

IDTSSuspend100.SuspendRequired

See Also

IDTSBreakpointSite100 Interface
Microsoft.SqlServer.Dts.Runtime.Wrapper Namespace

Return to top