BreakpointManager.CreateBreakpointTarget Method
Creates a new breakpoint in the task with the specified breakpoint ID and description.
命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
語法
'宣告
Public Function CreateBreakpointTarget ( _
breakpointID As Integer, _
description As String _
) As BreakpointTarget
public BreakpointTarget CreateBreakpointTarget (
int breakpointID,
string description
)
public:
BreakpointTarget^ CreateBreakpointTarget (
int breakpointID,
String^ description
)
public BreakpointTarget CreateBreakpointTarget (
int breakpointID,
String description
)
public function CreateBreakpointTarget (
breakpointID : int,
description : String
) : BreakpointTarget
參數
- breakpointID
The ID to assign to the breakpoint to distinguish it from other breakpoints.
- description
A string describing the breakpoint.
傳回值
A BreakpointTarget object.
備註
Tasks create breakpoints by calling the CreateBreakpointTarget method and providing integer breakpointID and string description parameters. When a task reaches the point in its code that contains a breakpoint, it evaluates the breakpoint by using IsBreakpointTargetEnabled to determine if the breakpoint is enabled. If true, the task notifies the Data Transformation Run-time engine by raising the OnBreakpointHit event.
範例
The following code example shows the code that creates a breakpoint in a custom task. The variable manager is the breakpoint manager for the task.
manager.CreateBreakpointTarget(BPID1, "My Sample Task Breakpoint #1");
執行緒安全性
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 的硬體和軟體需求>。
請參閱
參考
BreakpointManager Class
BreakpointManager Members
Microsoft.SqlServer.Dts.Runtime Namespace