C# Класс PowerStudio.DebugEngine.Events.BreakpointBoundEvent

This interface is sent when a pending breakpoint has been bound in the debuggee.
Наследование: AsynchronousEvent, IDebugBreakpointBoundEvent2
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

BreakpointBoundEvent() публичный Метод

public BreakpointBoundEvent ( Breakpoint pendingBreakpoint, Breakpoint boundBreakpoint ) : System
pendingBreakpoint Breakpoint
boundBreakpoint Breakpoint
Результат System

EnumBoundBreakpoints() публичный Метод

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.
Результат int

GetPendingBreakpoint() публичный Метод

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.
Результат int