Compartir a través de


BreakpointManager.GetBreakpointTarget Method

Returns the breakpoint object for a specific breakpoint ID.

Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)

Sintaxis

'Declaración
Public Function GetBreakpointTarget ( _
    breakpointID As Integer _
) As BreakpointTarget
public BreakpointTarget GetBreakpointTarget (
    int breakpointID
)
public:
BreakpointTarget^ GetBreakpointTarget (
    int breakpointID
)
public BreakpointTarget GetBreakpointTarget (
    int breakpointID
)
public function GetBreakpointTarget (
    breakpointID : int
) : BreakpointTarget

Parámetros

  • breakpointID
    The ID of the breakpoint to return.

Valor devuelto

A BreakpointTarget object.

Ejemplo

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

Seguridad para subprocesos

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.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

BreakpointManager Class
BreakpointManager Members
Microsoft.SqlServer.Dts.Runtime Namespace