Share via


Méthode GetBreakpointTarget

Returns the breakpoint object for a specific breakpoint ID.

Espace de noms :  Microsoft.SqlServer.Dts.Runtime
Assembly :  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Syntaxe

'Déclaration
Public Function GetBreakpointTarget ( _
    breakpointID As Integer _
) As BreakpointTarget
'Utilisation
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

Paramètres

Exemples

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