C# 클래스 PowerStudio.DebugEngine.Events.BreakpointBoundEvent

This interface is sent when a pending breakpoint has been bound in the debuggee.
상속: AsynchronousEvent, IDebugBreakpointBoundEvent2
파일 보기 프로젝트 열기: IntelliTect/PowerStudio 1 사용 예제들

공개 메소드들

메소드 설명
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