C# Class PowerStudio.DebugEngine.Events.BreakpointEvent

This Event is sent when a breakpoint is hit in the debuggee
Inheritance: StoppingEvent, IDebugBreakpointEvent2
Datei anzeigen Open project: IntelliTect/PowerStudio Class Usage Examples

Public Methods

Method Description
BreakpointEvent ( IEnumDebugBoundBreakpoints2 boundBreakpoints ) : System
EnumBreakpoints ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int

Creates an enumerator for all the breakpoints that fired at the current code location.

Not all breakpoints at a particular location may fire at a particular time (for example, a breakpoint with a condition will not fire until that condition is met).

Method Details

BreakpointEvent() public method

public BreakpointEvent ( IEnumDebugBoundBreakpoints2 boundBreakpoints ) : System
boundBreakpoints IEnumDebugBoundBreakpoints2
return System

EnumBreakpoints() public method

Creates an enumerator for all the breakpoints that fired at the current code location.
Not all breakpoints at a particular location may fire at a particular time (for example, a breakpoint with a condition will not fire until that condition is met).
public EnumBreakpoints ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int
ppEnum IEnumDebugBoundBreakpoints2 Returns an IEnumDebugBoundBreakpoints2 object that enumerates all the breakpoints associated with the current code location.
return int