ActiveXScriptTask.SuspendRequired Property
Gets or sets a Boolean that indicates whether tasks should suspend when they encounter a breakpoint.
命名空间: Microsoft.SqlServer.Dts.Tasks.ActiveXScriptTask
程序集: Microsoft.SqlServer.ActiveXScriptTask (in microsoft.sqlserver.activexscripttask.dll)
语法
声明
Public Property SuspendRequired As Boolean
public bool SuspendRequired { get; set; }
public:
virtual property bool SuspendRequired {
bool get () sealed;
void set (bool value) sealed;
}
/** @property */
public final boolean get_SuspendRequired ()
/** @property */
public final void set_SuspendRequired (boolean value)
public final function get SuspendRequired () : boolean
public final function set SuspendRequired (value : boolean)
属性值
true indicates that the task suspends. false indicates that the task does not suspend.
备注
When the run-time engine receives an OnBreakpointHit event from a task, it calls the SuspendExecution method for each executing task, notifying the task to pause execution.
Because there may be a significant delay between the time a task first receives a suspend call and the time it can actually suspends, the SuspendRequired property is set to indicate if a suspend action is still required. If this property is set to false, the task can immediately return from the suspend call.
重要提示: |
---|
下一版本的 Microsoft SQL Server 将删除该功能。请不要在新的开发工作中使用该功能,并尽快修改当前还在使用该功能的应用程序。 |
线程安全
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
ActiveXScriptTask Class
ActiveXScriptTask Members
Microsoft.SqlServer.Dts.Tasks.ActiveXScriptTask Namespace