IDkmRuntimeDataBreakpointHitReceived.OnRuntimeDataBreakpointHitReceived 方法

定义

在事件处理过程中,将调用 OnRuntimeDataBreakpointHitReceived。 有关详细信息,请参阅接口定义。

public:
 void OnRuntimeDataBreakpointHitReceived(Microsoft::VisualStudio::Debugger::Breakpoints::DkmRuntimeBreakpoint ^ runtimeBreakpoint, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, bool hasException, System::String ^ message, Microsoft::VisualStudio::Debugger::DkmEventDescriptorS ^ eventDescriptor);
public void OnRuntimeDataBreakpointHitReceived (Microsoft.VisualStudio.Debugger.Breakpoints.DkmRuntimeBreakpoint runtimeBreakpoint, Microsoft.VisualStudio.Debugger.DkmThread thread, bool hasException, string message, Microsoft.VisualStudio.Debugger.DkmEventDescriptorS eventDescriptor);
abstract member OnRuntimeDataBreakpointHitReceived : Microsoft.VisualStudio.Debugger.Breakpoints.DkmRuntimeBreakpoint * Microsoft.VisualStudio.Debugger.DkmThread * bool * string * Microsoft.VisualStudio.Debugger.DkmEventDescriptorS -> unit
Public Sub OnRuntimeDataBreakpointHitReceived (runtimeBreakpoint As DkmRuntimeBreakpoint, thread As DkmThread, hasException As Boolean, message As String, eventDescriptor As DkmEventDescriptorS)

参数

runtimeBreakpoint
DkmRuntimeBreakpoint

中调试监视器支持的低级别断点对象。

thread
DkmThread

中DkmThread 表示在目标进程中运行的线程。

hasException
Boolean

中如果源运行时实例可以确定命中断点的线程上的异常,则为 true。 目前,只有托管的运行时实例设置了此。 这用于快速确定是否应该应用异常特定的逻辑,而不进行其他网络往返。

message
String

中向用户显示的其他消息。

eventDescriptor
DkmEventDescriptorS

中描述正在处理的事件,并提供组件禁止显示此事件的功能。

适用于