共用方式為


Breakpoint2.ConditionType 屬性

取得中斷點的條件類型,為 true 時中斷,或是變更時中斷。

命名空間:  EnvDTE80
組件:  EnvDTE80 (在 EnvDTE80.dll 中)

語法

'宣告
ReadOnly Property ConditionType As dbgBreakpointConditionType
dbgBreakpointConditionType ConditionType { get; }
property dbgBreakpointConditionType ConditionType {
    dbgBreakpointConditionType get ();
}
abstract ConditionType : dbgBreakpointConditionType with get
function get ConditionType () : dbgBreakpointConditionType

屬性值

類型:dbgBreakpointConditionType
其中一個 dbgBreakpointConditionType 值。

備註

此類型可指示條件為 true 時,或是條件變更時執行中斷。

範例

下列範例示範如何使用 ConditionType 屬性。

若要測試這個屬性:

  1. 執行增益集。

  2. 執行目標應用程式。

public static void ConditionType(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 安全性

請參閱

參考

Breakpoint2 介面

EnvDTE80 命名空間

其他資源

如何:編譯和執行 Automation 物件模型程式碼範例

<PAVEOVER> 如何:指定中斷點條件