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