Compartir a través de


BreakpointTarget.Expression Propiedad

Gets or sets an expression to be evaluated to determine if the breakpoint should occur.

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

Sintaxis

'Declaración
Public Property Expression As String 
    Get 
    Set
'Uso
Dim instance As BreakpointTarget 
Dim value As String 

value = instance.Expression

instance.Expression = value
public string Expression { get; set; }
public:
property String^ Expression {
    String^ get ();
    void set (String^ value);
}
member Expression : string with get, set
function get Expression () : String 
function set Expression (value : String)

Valor de la propiedad

Tipo: System.String
A String containing the expression to evaluate.

Ejemplos

The following code example shows how to set the breakpoint expression to evaluate the value of a variable.

bp.Expression = "@v == 1";
bp.Expression = "@v == 1"

Vea también

Referencia

BreakpointTarget Clase

Espacio de nombres Microsoft.SqlServer.Dts.Runtime