Expression 屬性
Gets or sets an expression to be evaluated to determine if the breakpoint should occur.
命名空間: Microsoft.SqlServer.Dts.Runtime
組件: Microsoft.SqlServer.ManagedDTS (在 Microsoft.SqlServer.ManagedDTS.dll 中)
語法
'宣告
Public Property Expression As String
Get
Set
'用途
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)
屬性值
型別:System. . :: . .String
A String containing the expression to evaluate.
範例
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"