Debugger2.Breakpoints プロパティ
ブレークポイントのコレクションを取得します。
名前空間: EnvDTE80
アセンブリ: EnvDTE80 (EnvDTE80.dll 内)
構文
'宣言
ReadOnly Property Breakpoints As Breakpoints
Breakpoints Breakpoints { get; }
property Breakpoints^ Breakpoints {
Breakpoints^ get ();
}
abstract Breakpoints : Breakpoints
function get Breakpoints () : Breakpoints
プロパティ値
型 : EnvDTE.Breakpoints
Breakpoints コレクション。
解説
Breakpoints は、デバッガーに設定されているすべてのブレークポイントのコレクションを取得します。このコレクションは、保留中のすべてのブレークポイントのリストを表します。保留中のブレークポイントとバインドされたブレークポイントの説明については、dbgBreakpointType のトピックを参照してください。
例
Breakpoints プロパティを使用する方法を次の例に示します。
このプロパティをテストするには
- ターゲット プロジェクトを開き、アドインを実行します。
public static void Breakpoints(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("Breakpoints
Property");
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;
// Set breakpoints.
debugger.Breakpoints.Add("","Target001.cs", 13, 1, "",
EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue,
"C#","", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
debugger.Breakpoints.Add("","Target001.cs", 14, 1, "",
EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue,
"C#","", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
owp.OutputString("Number of breakpoints set: " +
debugger.Breakpoints.Count + "\n");
// List all breakpoints.
foreach(EnvDTE80.Breakpoint2 bp in debugger.Breakpoints)
{
owp.OutputString(bp.Name + "\n");
}
}
Sub ListAllBreakpoints()
' This function dumps the names of all the breakpoints
' currently set to a new pane in the output window.
Dim ow As OutputWindow
ow = DTE2.Windows.Item(Constants.vsWindowKindOutput).Object
Dim bppane As OutputWindowPane
bppane = ow.OutputWindowPanes.Add("Debugger")
Dim bps As Breakpoints
bps = DTE2.Debugger.Breakpoints
If (bps.Count > 0) Then
Dim bp As Breakpoint2
For Each bp In bps
bppane.OutputString(bp.Name + vbCrLf)
Next
Else
bppane.OutputString("No breakpoints are set" + vbCrLf)
End If
End Sub
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。