IDkmClrInspectionQueryProcessor.GetLocalValues Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Execute a compiled inspection query to get a set of local variable values as a list of formatted DkmEvaluationResults.
public:
void GetLocalValues(Microsoft::VisualStudio::Debugger::Evaluation::ClrCompilation::DkmCompiledClrLocalsQuery ^ compiledClrLocalsQuery, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::Evaluation::DkmInspectionContext ^ inspectionContext, Microsoft::VisualStudio::Debugger::Evaluation::DkmILContext ^ iLContext, int firstLocalIndex, int count, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Evaluation::ClrCompilation::DkmGetLocalValuesAsyncResult> ^ completionRoutine);
public void GetLocalValues (Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmCompiledClrLocalsQuery compiledClrLocalsQuery, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.Evaluation.DkmInspectionContext inspectionContext, Microsoft.VisualStudio.Debugger.Evaluation.DkmILContext iLContext, int firstLocalIndex, int count, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmGetLocalValuesAsyncResult> completionRoutine);
abstract member GetLocalValues : Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmCompiledClrLocalsQuery * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.Evaluation.DkmInspectionContext * Microsoft.VisualStudio.Debugger.Evaluation.DkmILContext * int * int * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.ClrCompilation.DkmGetLocalValuesAsyncResult> -> unit
Public Sub GetLocalValues (compiledClrLocalsQuery As DkmCompiledClrLocalsQuery, workList As DkmWorkList, inspectionContext As DkmInspectionContext, iLContext As DkmILContext, firstLocalIndex As Integer, count As Integer, completionRoutine As DkmCompletionRoutine(Of DkmGetLocalValuesAsyncResult))
Parameters
- compiledClrLocalsQuery
- DkmCompiledClrLocalsQuery
[In] Represents a query to populate local variable information using managed IL code.
- workList
- DkmWorkList
WorkList which is currently being processed. This value can be used to check for cancelation or to append additional work. New work items will not begin executing until after this function returns.
- inspectionContext
- DkmInspectionContext
[In] The inspection context for this query.
- iLContext
- DkmILContext
[In] The stack context to execute the query against.
- firstLocalIndex
- Int32
[In] The index of the first local variable to get the value for.
- count
- Int32
[In] The number of local variables to get the value for.
- completionRoutine
- DkmCompletionRoutine<DkmGetLocalValuesAsyncResult>
Routine to fire when the request is complete. This will be implicitly fired if the implementation returns failure from this interface method. The implementation must fire this method in all other scenarios.