BreakpointTarget.Expression Property
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 (in microsoft.sqlserver.manageddts.dll)
Sintaxis
'Declaración
Public Property Expression As String
public string Expression { get; set; }
public:
property String^ Expression {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_Expression ()
/** @property */
public void set_Expression (String value)
public function get Expression () : String
public function set Expression (value : String)
Valor de propiedad
A String containing the expression to evaluate.
Ejemplo
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"
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
BreakpointTarget Class
BreakpointTarget Members
Microsoft.SqlServer.Dts.Runtime Namespace