Breakpoints::Add Method (String^, String^, Int32, Int32, String^, dbgBreakpointConditionType, String^, String^, Int32, String^, Int32, dbgHitCountType)
Creates and enables a new breakpoint.
Assembly: EnvDTE (in EnvDTE.dll)
Breakpoints^ Add( String^ Function = "", String^ File = "", int Line = 1, int Column = 1, String^ Condition = "", dbgBreakpointConditionType ConditionType = dbgBreakpointConditionType::dbgBreakpointConditionTypeWhenTrue, String^ Language = "", String^ Data = "", int DataCount = 1, String^ Address = "", int HitCount = 0, dbgHitCountType HitCountType = dbgHitCountType::dbgHitCountTypeNone )
Parameters
- Function
-
Type:
System::String^
Optional. A function breakpoint. The name of the function on which the breakpoint is set.
- File
-
Type:
System::String^
Optional. A file breakpoint. The name and optional path of the file in which the breakpoint is set.
- Line
-
Type:
System::Int32
Optional. A file breakpoint. The source-code line number, measured from the start of the function, at which the breakpoint is set. If this value is 1, the breakpoint is set at the start of the function.
- Column
-
Type:
System::Int32
Optional. A file breakpoint. The character at which the breakpoint is set. In most cases, you can leave this value set to 1, which sets the breakpoint at the start of the line.
- Condition
-
Type:
System::String^
Optional. The breakpoint Condition. Use with ConditionType.
- ConditionType
-
Type:
EnvDTE::dbgBreakpointConditionType
Optional. The condition type. A dbgBreakpointConditionType value. Use with Condition.
- Language
-
Type:
System::String^
Optional. The programming language in which the function is written.
- Data
-
Type:
System::String^
Optional. A data breakpoint. If the breakpoint is set on a variable, you can specify the name of the variable. You can use the context operator to specify a variable outside the current scope.
- DataCount
-
Type:
System::Int32
Optional. A data breakpoint. If the breakpoint is set on a variable, and if the variable is an array or dereferenced pointer, this value specifies the number of elements to watch.
- Address
-
Type:
System::String^
Optional. An address breakpoint. The memory address where the breakpoint is set, in decimal or hexadecimal format.
- HitCount
-
Type:
System::Int32
Optional. The Hit Count property for the breakpoint. If you specify no hit count, program execution breaks each time the breakpoint is hit. If you specify a hit count, program execution breaks only on the specified number of hits.
- HitCountType
-
Type:
EnvDTE::dbgHitCountType
Optional. The hit count type. A dbgHitCountType value.
Creates and enables a new breakpoint and returns a Breakpoints collection.
All parameters for this method are optional; however you can specify only one of four location types, as described below.
To set a breakpoint in this location type | Use parameter(s) |
|---|---|
Within a function. | Function |
Within a file. Can optionally specify the line and column location within the file. | File, Line, and Column |
Within data. Can optionally be set for variables and the number of variables to watch. | Data and DataCount |
At a specific address. | Address |
To any of these location types, you can optionally supply Condition and ConditionType to break only when a specified condition is true. You can optionally supply HitCount and HitCountType to break on the specified hit count.