DTSBreakpointHitTest Enum
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.
Enumerates the values for the hit count types.
public enum class DTSBreakpointHitTest
public enum DTSBreakpointHitTest
type DTSBreakpointHitTest =
Public Enum DTSBreakpointHitTest
- Inheritance
-
DTSBreakpointHitTest
Fields
Name | Value | Description |
---|---|---|
DTSBHT_ALWAYS | 0 | Execution is always suspended when the breakpoint is hit. |
DTSBHT_GREATER_OR_EQUAL | 1 | Execution is suspended when the number of times the breakpoint has occurred is equal to or greater than the hit count. |
DTSBHT_EQUAL | 2 | Execution is suspended when the number of times the breakpoint has occurred is equal to the hit count. |
DTSBHT_MULTIPLE | 3 | Execution is suspended when a multiple of the hit count occurs. |
DTSBHT_EXPRESSION | 4 | Execution is suspended when the expression changes. |
Remarks
For more information, see DTSBreakpointHitTest.