GetBreakpointTarget 方法
Returns the breakpoint object for a specific breakpoint ID.
命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (在 Microsoft.SqlServer.ManagedDTS.dll 中)
語法
'宣告
Public Function GetBreakpointTarget ( _
breakpointID As Integer _
) As BreakpointTarget
'用途
Dim instance As BreakpointManager
Dim breakpointID As Integer
Dim returnValue As BreakpointTarget
returnValue = instance.GetBreakpointTarget(breakpointID)
public BreakpointTarget GetBreakpointTarget(
int breakpointID
)
public:
BreakpointTarget^ GetBreakpointTarget(
int breakpointID
)
member GetBreakpointTarget :
breakpointID:int -> BreakpointTarget
public function GetBreakpointTarget(
breakpointID : int
) : BreakpointTarget
參數
- breakpointID
型別:System. . :: . .Int32
The ID of the breakpoint to return.
範例
The following example shows a custom task checking for a breakpoint. This code is in the custom task's Execute method, where the variable bpm is the breakpoint manager for the task.
if( this.bpm.IsBreakpointTargetEnabled( 1 ) == true )
events.OnBreakpointHit( this.bpm.GetBreakpointTarget( 1 ) );
If Me.bpm.IsBreakpointTargetEnabled(1) = True Then
events.OnBreakpointHit(Me.bpm.GetBreakpointTarget(1))
End If