Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains the properties and methods that are used to programmatically control a breakpoint. To use Debugger4, you must add a reference to EnvDTE90a.dll. For native development, you must add a reference to dte90a.tlb.
Namespace: EnvDTE90a
Assembly: EnvDTE90a (in EnvDTE90a.dll)
Syntax
'Declaration
<GuidAttribute("81C189C5-0EF0-459C-B907-A22F6B7B355C")> _
Public Interface Breakpoint3 _
Inherits Breakpoint2
[GuidAttribute("81C189C5-0EF0-459C-B907-A22F6B7B355C")]
public interface Breakpoint3 : Breakpoint2
[GuidAttribute(L"81C189C5-0EF0-459C-B907-A22F6B7B355C")]
public interface class Breakpoint3 : Breakpoint2
[<GuidAttribute("81C189C5-0EF0-459C-B907-A22F6B7B355C")>]
type Breakpoint3 =
interface
interface Breakpoint2
end
public interface Breakpoint3 extends Breakpoint2
The Breakpoint3 type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() |
Address | Gets the address that a breakpoint is bound to. |
![]() |
BreakWhenHit | (Inherited from Breakpoint2.) |
![]() |
BreakWhenHit | Gets or sets a value that indicates whether the program breaks when a breakpoint is encountered. |
![]() |
Children | (Inherited from Breakpoint2.) |
![]() |
Children | Gets a collection of all Breakpoint2 child objects. |
![]() |
Collection | (Inherited from Breakpoint2.) |
![]() |
Collection | Gets the collection that contains all the Breakpoint2 objects. |
![]() |
Condition | (Inherited from Breakpoint2.) |
![]() |
Condition | Gets the condition that triggers a breakpoint. |
![]() |
ConditionType | (Inherited from Breakpoint2.) |
![]() |
ConditionType | Gets the condition type of the breakpoint, which can be either break when true, or break when it is changed. |
![]() |
CurrentHits | (Inherited from Breakpoint2.) |
![]() |
CurrentHits | Gets the number of times this breakpoint has been hit during this debugging session. |
![]() |
DTE | (Inherited from Breakpoint2.) |
![]() |
DTE | Gets the top-level extensibility object. |
![]() |
Enabled | (Inherited from Breakpoint2.) |
![]() |
Enabled | Sets or returns the enabled state of the breakpoint. |
![]() |
File | (Inherited from Breakpoint2.) |
![]() |
File | Gets the name of the file in which the breakpoint is contained. |
![]() |
FileColumn | (Inherited from Breakpoint2.) |
![]() |
FileColumn | Gets the character location within a line in a file where the breakpoint is set. |
![]() |
FileLine | (Inherited from Breakpoint2.) |
![]() |
FileLine | Gets the line within a file where the breakpoint is set. |
![]() |
FilterBy | (Inherited from Breakpoint2.) |
![]() |
FilterBy | Gets or sets a condition at which a breakpoint is set. |
![]() |
FunctionColumnOffset | (Inherited from Breakpoint2.) |
![]() |
FunctionColumnOffset | Gets the column offset from the name of a function breakpoint. |
![]() |
FunctionLineOffset | (Inherited from Breakpoint2.) |
![]() |
FunctionLineOffset | Gets the line offset from the name of a function breakpoint. |
![]() |
FunctionName | (Inherited from Breakpoint2.) |
![]() |
FunctionName | Gets the name of the function that contains the breakpoint. |
![]() |
HitCountTarget | (Inherited from Breakpoint2.) |
![]() |
HitCountTarget | Gets the hit count target for any type of breakpoint. It is interpreted based on the hit count type. |
![]() |
HitCountType | (Inherited from Breakpoint2.) |
![]() |
HitCountType | Gets the hit count type, which describes how to interpret a hit count. |
![]() |
Language | (Inherited from Breakpoint2.) |
![]() |
Language | Gets the name of the programming language that contains the breakpoint. |
![]() |
LocationType | (Inherited from Breakpoint2.) |
![]() |
LocationType | Gets the location type the breakpoint represents. |
![]() |
Macro | (Inherited from Breakpoint2.) |
![]() |
Macro | Gets or sets a breakpoint macro. |
![]() |
Message | (Inherited from Breakpoint2.) |
![]() |
Message | Gets or sets a breakpoint message. |
![]() |
Name | (Inherited from Breakpoint2.) |
![]() |
Name | Sets or returns the name of the breakpoint. |
![]() |
Parent | (Inherited from Breakpoint2.) |
![]() |
Parent | Gets the immediate parent object of the breakpoint. |
![]() |
Process | (Inherited from Breakpoint2.) |
![]() |
Process | Gets the process in which the breakpoint is set. |
![]() |
Program | (Inherited from Breakpoint2.) |
![]() |
Program | Gets the executable being managed by this process. |
![]() |
Tag | (Inherited from Breakpoint2.) |
![]() |
Tag | Sets or gets a user-defined string that identifyies this breakpoint. |
![]() |
Type | (Inherited from Breakpoint2.) |
![]() |
Type | Gets a constant that specifies the type of breakpoint. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
Delete() | (Inherited from Breakpoint2.) |
![]() |
Delete() | Deletes the breakpoint. |
![]() |
ResetHitCount() | (Inherited from Breakpoint2.) |
![]() |
ResetHitCount() | Resets the breakpoint hit count. |
Top
Remarks
See Breakpoint2.