IDkmBreakpointManagerNotification.OnBreakpointMessage Method

Definition

Notification from the breakpoint manager concerning the status of binding the breakpoint.

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

Parameters

pendingBreakpoint
DkmPendingBreakpoint

[In] High level breakpoint object which is tied to a user-level construct (ex: source file, function name) which may map to zero or more code-level constructs (DkmBoundBreakpoint) and which may be tracked over time.

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] Message string to display to the user.

Applies to