Breakpoint2.Collection Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection containing all of the Breakpoint2 objects.
public:
property EnvDTE::Breakpoints ^ Collection { EnvDTE::Breakpoints ^ get(); };
[System.Runtime.InteropServices.DispId(202)]
public EnvDTE.Breakpoints Collection { [System.Runtime.InteropServices.DispId(202)] get; }
[<System.Runtime.InteropServices.DispId(202)>]
[<get: System.Runtime.InteropServices.DispId(202)>]
member this.Collection : EnvDTE.Breakpoints
Public ReadOnly Property Collection As Breakpoints
Property Value
A Breakpoints collection.
Implements
- Attributes
Examples
The following example demonstrates how to use the Collection property.
public static void Collection(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("Debugged Processes Test");
owp.Activate();
EnvDTE80.Debugger2 debugger = (EnvDTE80.Debugger2)dte.Debugger;
debugger.Breakpoints.Add("", "Target001.cs", 14, 1, "",
EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue,
"C#", "", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
debugger.Breakpoints.Add("", "Target001.cs", 15, 1, "",
EnvDTE.dbgBreakpointConditionType.dbgBreakpointConditionTypeWhenTrue,
"C#", "", 0, "", 0, EnvDTE.dbgHitCountType.dbgHitCountTypeNone);
owp.OutputString("Collection of bound breakpoints contains: \n");
foreach (EnvDTE80.Breakpoint2 bp in debugger.Breakpoints.Item(1).Collection)
owp.OutputString(bp.Name + "\n");
}