BreakpointManager.CreateBreakpointTarget 方法

Creates a new breakpoint in the task with the specified breakpoint ID and description.

命名空间:  Microsoft.SqlServer.Dts.Runtime
程序集:  Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)

语法

声明
Public Function CreateBreakpointTarget ( _
    breakpointID As Integer, _
    description As String _
) As BreakpointTarget
用法
Dim instance As BreakpointManager 
Dim breakpointID As Integer 
Dim description As String 
Dim returnValue As BreakpointTarget 

returnValue = instance.CreateBreakpointTarget(breakpointID, _
    description)
public BreakpointTarget CreateBreakpointTarget(
    int breakpointID,
    string description
)
public:
BreakpointTarget^ CreateBreakpointTarget(
    int breakpointID, 
    String^ description
)
member CreateBreakpointTarget : 
        breakpointID:int * 
        description:string -> BreakpointTarget
public function CreateBreakpointTarget(
    breakpointID : int, 
    description : String
) : BreakpointTarget

参数

  • breakpointID
    类型:System.Int32
    The ID to assign to the breakpoint to distinguish it from other breakpoints.
  • description
    类型:System.String
    A string describing the breakpoint.

返回值

类型:Microsoft.SqlServer.Dts.Runtime.BreakpointTarget
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");

请参阅

参考

BreakpointManager 类

Microsoft.SqlServer.Dts.Runtime 命名空间