IDkmRuntimeFunctionResolverClient.OnResolverMessage Method

Definition

Called by runtime function resolvers when the resolver wishes to notify its client an error/warning occurred while attempting to resolve the breakpoint.

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

Parameters

runtimeFunctionResolutionRequest
DkmRuntimeFunctionResolutionRequest

[In] DkmRuntimeFunctionResolutionRequest represents an expression to be parsed and evaluated by a runtime based expression evaluator and is bound to a particular process. Resolutions will send DkmModuleInstance::FunctionResolved events.

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