Właściwość BreakpointTarget.Expression
Pobiera lub ustawia wyrażenie oceniane do ustalenia, jeśli punkt przerwania powinny występować.
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
Public Property Expression As String
Get
Set
'Użycie
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)
Wartość właściwości
Typ: System.String
A ciąg zawierającej wyrażenie do oceny.
Przykłady
Następujący kod ilustruje przykład sposobu zestaw wyrażenie punkt przerwania ocenić wartość zmiennej.
bp.Expression = "@v == 1";
bp.Expression = "@v == 1"