BreakpointTypes 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.
Represents an enumeration that provides settings for breakpoints.
This enumeration supports a bitwise combination of its member values.
public enum class BreakpointTypes
[System.Flags]
public enum BreakpointTypes
[<System.Flags>]
type BreakpointTypes =
Public Enum BreakpointTypes
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No breakpoint is set. |
Enabled | 1 | Represents that the breakpoint is enabled. |
Bounded | 2 | Represents a bounded breakpoint, which implements the where and when of breaking at a desired point in a program. |
Conditional | 4 | Represents a conditional breakpoint, which is an expression that is evaluated to determine whether the breakpoint will occur. |
Remarks
This enumeration is used by the DebuggerService.