IDkmBoundBreakpointHitReceived.OnBoundBreakpointHitReceived Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
OnBoundBreakpointHitReceived is invoked as part of event processing. See interface definition for more information.
public:
void OnBoundBreakpointHitReceived(Microsoft::VisualStudio::Debugger::Breakpoints::DkmBoundBreakpoint ^ boundBreakpoint, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, bool hasException, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnBoundBreakpointHitReceived (Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint boundBreakpoint, Microsoft.VisualStudio.Debugger.DkmThread thread, bool hasException, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnBoundBreakpointHitReceived : Microsoft.VisualStudio.Debugger.Breakpoints.DkmBoundBreakpoint * Microsoft.VisualStudio.Debugger.DkmThread * bool * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnBoundBreakpointHitReceived (boundBreakpoint As DkmBoundBreakpoint, thread As DkmThread, hasException As Boolean, eventDescriptor As DkmEventDescriptorS)
Parameters
- boundBreakpoint
- DkmBoundBreakpoint
[In] Represents a breakpoint which has been bound (resolved) to a particular code instruction address or a particular data element. For example, in C++ templates one could create a DkmPendingBreakpoint for a source line. The breakpoint manager would resolve it to zero (ex: module not loaded), one (ex: template is only used on 'int') or many (ex: template is used with many template arguments) location. Each location would have a DkmBoundBreakpoint object.
- thread
- DkmThread
[In] DkmThread represents a thread running in the target process.
- hasException
- Boolean
[In] Contains true if the source runtime instance can determine that an exception is in flight on the thread which hit the breakpoint. Currently, only managed runtime instances ever set this. This is used to quickly determine if exception specific logic should apply without making another network round-trip.
- eventDescriptor
- DkmEventDescriptorS
[In] Describes the event being processed and provides the ability for a component to suppress this event.