BreakpointTypes Enum

Definition

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
BreakpointTypes
Attributes

Fields

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.

Enabled 1

Represents that the breakpoint is enabled.

None 0

No breakpoint is set.

Remarks

This enumeration is used by the DebuggerService.

Applies to