Compartir a través de


Clase BreakpointTarget

Contains information on breakpoints that are set in the package. This class cannot be inherited.

Jerarquía de herencia

System.Object
  Microsoft.SqlServer.Dts.Runtime.DtsObject
    Microsoft.SqlServer.Dts.Runtime.BreakpointTarget

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime
Ensamblado:  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Sintaxis

'Declaración
Public NotInheritable Class BreakpointTarget _
    Inherits DtsObject
'Uso
Dim instance As BreakpointTarget
public sealed class BreakpointTarget : DtsObject
public ref class BreakpointTarget sealed : public DtsObject
[<SealedAttribute>]
type BreakpointTarget =  
    class 
        inherit DtsObject 
    end
public final class BreakpointTarget extends DtsObject

El tipo BreakpointTarget expone los siguientes miembros.

Propiedades

  Nombre Descripción
Propiedad pública BreakOnExpressionChange Gets or sets a Boolean that indicates whether the code is to continue running or break and stop executing when the expression changes.
Propiedad pública Description Returns the description associated with the breakpoint.
Propiedad pública Enabled Gets or sets a Boolean indicating if a specific breakpoint is currently enabled.
Propiedad pública Expression Gets or sets an expression to be evaluated to determine if the breakpoint should occur.
Propiedad pública HitCount Gets or sets an Integer that specifies the number of times a breakpoint occurs before the run-time engine is suspended.
Propiedad pública HitTarget Gets or sets the value used in conjunction with HitTest operation.
Propiedad pública HitTest Gets or sets a DTSBreakpointHitTest enumeration used as a switch to test if a breakpoint should occur.
Propiedad pública ID Gets the unique identifier assigned to the breakpoint.
Propiedad pública Owner Returns an IDTSBreakpointSite for the task that owns the breakpoint.

Arriba

Métodos

  Nombre Descripción
Método público Equals Determines whether two object instances are equal. (Se hereda de DtsObject.)
Método público GetHashCode Returns the hash code for this instance. (Se hereda de DtsObject.)
Método público GetType (Se hereda de Object.)
Método público ResetHitCount Resets the HitCount value to zero.
Método público ToString (Se hereda de Object.)

Arriba

Comentarios

When running a package in SQL Server Data Tools (SSDT), SSIS Designer supports breakpoints on containers and tasks. SQL Server Data Tools (SSDT) also provides debug windows to view the data during a breakpoint. Additionally, SSIS Designer provides progress reporting for debugging package control flow. For more information on using these features with breakpoints, see Depurar el flujo de control and Agregar compatibilidad con la depuración de una tarea personalizada.

Seguridad para subprocesos

Cualquier miembro público static (Shared en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Vea también

Referencia

Espacio de nombres Microsoft.SqlServer.Dts.Runtime