Classe BreakpointTarget

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

Gerarchia di ereditarietà

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

Spazio dei nomi  Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Sintassi

'Dichiarazione
Public NotInheritable Class BreakpointTarget _
    Inherits DtsObject
'Utilizzo
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

Nel tipo BreakpointTarget sono esposti i membri seguenti.

Proprietà

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

In alto

Metodi

  Nome Descrizione
Metodo pubblico Equals Determines whether two object instances are equal. Ereditato da DtsObject.
Metodo pubblico GetHashCode Returns the hash code for this instance. Ereditato da DtsObject.
Metodo pubblico GetType Ereditato da Object.
Metodo pubblico ResetHitCount Resets the HitCount value to zero.
Metodo pubblico ToString Ereditato da Object.

In alto

Osservazioni

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 Debug del flusso di controllo and Aggiunta di supporto per il debug in un'attività personalizzata.

Protezione dei thread

I membri static (Shared in Visual Basic) pubblici di questo tipo sono affidabili. Non è invece garantita la sicurezza dei membri dell'istanza.

Vedere anche

Riferimento

Spazio dei nomi Microsoft.SqlServer.Dts.Runtime