Breakpoint.LocationType Property
Visual Studio 2015
Indicates the location type this breakpoint represents.
Assembly: EnvDTE (in EnvDTE.dll)
A Breakpoint can be set in a function, a file, a variable, or at a specific memory address.
The following example demonstrates how to use the LocationType property.
public static void LocationType(DTE 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("LocationType Property Test: "); owp.Activate(); EnvDTE.Debugger debugger = (EnvDTE.Debugger)dte.Debugger; owp.OutputString("HitCountTarget: " + debugger.Breakpoints.Item(1).HitCountTarget); owp.OutputString("\nHitCountType: " + debugger.Breakpoints.Item(1).HitCountType); owp.OutputString("\nLocationType: " + debugger.Breakpoints.Item(1).LocationType); owp.OutputString("\nName: " + debugger.Breakpoints.Item(1).Name); debugger.Breakpoints.Item(1).Tag = "My Breakpoint"; owp.OutputString("\nTag: " + debugger.Breakpoints.Item(1).Tag); owp.OutputString("\nType: " + debugger.Breakpoints.Item(1).Type); }
Show: