Breakpoint2.Condition 屬性
取得觸發 (Trigger) 中斷點的條件。
命名空間: EnvDTE80
組件: EnvDTE80 (在 EnvDTE80.dll 中)
語法
'宣告
ReadOnly Property Condition As String
string Condition { get; }
property String^ Condition {
String^ get ();
}
abstract Condition : string
function get Condition () : String
屬性值
型別:System.String
字串,包含觸發中斷點的條件。
備註
條件是一個選擇性屬性,用以決定在到達中斷點時是否中斷程式。
此條件是在 [中斷點條件] 對話方塊中指定。
範例
下列範例示範如何使用 Condition 屬性。
若要測試這個屬性:
執行增益集。
執行目標應用程式。
public static void Condition(EnvDTE80.DTE2 dte)
{
// Setup debug Output window.
Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("Breakpoint Condition and Type are: ");
owp.Activate();
// dte is a reference to the DTE2 object passed to you by the
// OnConnection method that you implement when you create an Add-in.
EnvDTE80.Debugger2 debugger = (EnvDTE80.Debugger2)dte.Debugger;
// Stop at the breakpoint, if TempC < TempF is true
debugger.Breakpoints.Add("", "Target001.cs", 15, 1, "tempC < tempF",
EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue,
"C#", "", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
string strCondition = debugger.Breakpoints.Item(1).Condition;
string strConditionType = debugger.Breakpoints.Item(1).ConditionType.ToString();
owp.OutputString(strCondition + "\n" + strConditionType);
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。