DkmRuntimeFunctionResolutionRequest.EnableResolution(DkmWorkList) Method

Definition

Called by the breakpoint manager to add a pending resolve request. Expression evaluators, or other components will immediately try to bind the breakpoint against current modules, and will bind the breakpoint to additional locations as modules load. The caller of this interface should implement IDkmRuntimeFunctionResolverClient to obtain the results of the resolution.

Implementations of this interface should stop attempting to bind the breakpoint when the DkmRuntimeFunctionResolutionRequest object is closed.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

public:
 void EnableResolution(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList);
public void EnableResolution (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList);
member this.EnableResolution : Microsoft.VisualStudio.Debugger.DkmWorkList -> unit
Public Sub EnableResolution (WorkList As DkmWorkList)

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

Applies to