C# Class PowerStudio.DebugEngine.Events.BreakpointBoundEvent

This interface is sent when a pending breakpoint has been bound in the debuggee.
Inheritance: AsynchronousEvent, IDebugBreakpointBoundEvent2
Afficher le fichier Open project: IntelliTect/PowerStudio Class Usage Examples

Méthodes publiques

Méthode Description
BreakpointBoundEvent ( Breakpoint pendingBreakpoint, Breakpoint boundBreakpoint ) : System
EnumBoundBreakpoints ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int

Creates an enumerator of breakpoints that were bound on this event.

The list of bound breakpoints is for those bound to this event and might not be the entire list of breakpoints bound from a pending breakpoint. To get a list of all breakpoints bound to a pending breakpoint, call the IDebugBreakpointBoundEvent2::GetPendingBreakpoint method to get the associated IDebugPendingBreakpoint2 object and then call the IDebugPendingBreakpoint2::EnumBoundBreakpoints method to get an IEnumDebugBoundBreakpoints2 object which contains all the bound breakpoints for the pending breakpoint.

GetPendingBreakpoint ( IDebugPendingBreakpoint2 &ppPendingBP ) : int

Gets the pending breakpoint that is being bound.

Method Details

BreakpointBoundEvent() public méthode

public BreakpointBoundEvent ( Breakpoint pendingBreakpoint, Breakpoint boundBreakpoint ) : System
pendingBreakpoint Breakpoint
boundBreakpoint Breakpoint
Résultat System

EnumBoundBreakpoints() public méthode

Creates an enumerator of breakpoints that were bound on this event.
The list of bound breakpoints is for those bound to this event and might not be the entire list of breakpoints bound from a pending breakpoint. To get a list of all breakpoints bound to a pending breakpoint, call the IDebugBreakpointBoundEvent2::GetPendingBreakpoint method to get the associated IDebugPendingBreakpoint2 object and then call the IDebugPendingBreakpoint2::EnumBoundBreakpoints method to get an IEnumDebugBoundBreakpoints2 object which contains all the bound breakpoints for the pending breakpoint.
public EnumBoundBreakpoints ( IEnumDebugBoundBreakpoints2 &ppEnum ) : int
ppEnum IEnumDebugBoundBreakpoints2 Returns an IEnumDebugBoundBreakpoints2 object that enumerates all the breakpoints bound from this event.
Résultat int

GetPendingBreakpoint() public méthode

Gets the pending breakpoint that is being bound.
public GetPendingBreakpoint ( IDebugPendingBreakpoint2 &ppPendingBP ) : int
ppPendingBP IDebugPendingBreakpoint2 Returns the IDebugPendingBreakpoint2 object that represents the pending breakpoint being bound.
Résultat int