Compartilhar via


Classe BreakpointTarget

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

Hierarquia de herança

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

Namespace:  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (em Microsoft.SqlServer.ManagedDTS.dll)

Sintaxe

'Declaração
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

O tipo BreakpointTarget expõe os membros a seguir.

Propriedades

  Nome Descrição
Propriedade 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.
Propriedade pública Description Returns the description associated with the breakpoint.
Propriedade pública Enabled Gets or sets a Boolean indicating if a specific breakpoint is currently enabled.
Propriedade pública Expression Gets or sets an expression to be evaluated to determine if the breakpoint should occur.
Propriedade pública HitCount Gets or sets an Integer that specifies the number of times a breakpoint occurs before the run-time engine is suspended.
Propriedade pública HitTarget Gets or sets the value used in conjunction with HitTest operation.
Propriedade pública HitTest Gets or sets a DTSBreakpointHitTest enumeration used as a switch to test if a breakpoint should occur.
Propriedade pública ID Gets the unique identifier assigned to the breakpoint.
Propriedade pública Owner Returns an IDTSBreakpointSite for the task that owns the breakpoint.

Início

Métodos

  Nome Descrição
Método público Equals Determines whether two object instances are equal. (Herdado de DtsObject.)
Método público GetHashCode Returns the hash code for this instance. (Herdado de DtsObject.)
Método público GetType (Herdado de Object.)
Método público ResetHitCount Resets the HitCount value to zero.
Método público ToString (Herdado de Object.)

Início

Comentários

When running a package in SSDT (SQL Server Data Tools), SSIS Designer supports breakpoints on containers and tasks. SSDT (SQL Server Data Tools) 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 Depurando o fluxo de controle and Adicionando suporte para depurando em uma tarefa personalizada.

Segurança de thread

Qualquer membro público static (Shared no Visual Basic) desse tipo é seguro para threads. Não há garantia de que qualquer membro de instância seja seguro para threads.

Consulte também

Referência

Namespace Microsoft.SqlServer.Dts.Runtime