IDkmDataBreakpointErrorInfoClient.OnError Method

Definition

This method will be called when an breakpoint has been invalid and needs to inform the UI.

public:
 void OnError(Microsoft::VisualStudio::Debugger::Breakpoints::DkmRuntimeBreakpoint ^ runtimeBreakpoint, Microsoft::VisualStudio::Debugger::Breakpoints::DkmBreakpointMessageLevel level, System::String ^ message);
public void OnError (Microsoft.VisualStudio.Debugger.Breakpoints.DkmRuntimeBreakpoint runtimeBreakpoint, Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointMessageLevel level, string message);
abstract member OnError : Microsoft.VisualStudio.Debugger.Breakpoints.DkmRuntimeBreakpoint * Microsoft.VisualStudio.Debugger.Breakpoints.DkmBreakpointMessageLevel * string -> unit
Public Sub OnError (runtimeBreakpoint As DkmRuntimeBreakpoint, level As DkmBreakpointMessageLevel, message As String)

Parameters

runtimeBreakpoint
DkmRuntimeBreakpoint

[In] Low-level breakpoint object which is supported by debug monitors.

level
DkmBreakpointMessageLevel

[In] Describes the severity of a message sent from a breakpoint manager back to the source component. This list is sorted in order of priority, as the UI will only display the most important warning. All warnings are ignored if the breakpoint is bound.

message
String

[In] The error message to be reported.

Applies to