Share via


IDkmLanguageExpressionEvaluator.GetFrameArguments Method

Definition

Provides information on the arguments of a stack frame. This is currently only exposed through the VS automation model (EnvDTE.StackFrame.Arguments).

public:
 void GetFrameArguments(Microsoft::VisualStudio::Debugger::Evaluation::DkmInspectionContext ^ inspectionContext, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame ^ frame, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Evaluation::DkmGetFrameArgumentsAsyncResult> ^ completionRoutine);
public void GetFrameArguments (Microsoft.VisualStudio.Debugger.Evaluation.DkmInspectionContext inspectionContext, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame frame, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetFrameArgumentsAsyncResult> completionRoutine);
abstract member GetFrameArguments : Microsoft.VisualStudio.Debugger.Evaluation.DkmInspectionContext * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Evaluation.DkmGetFrameArgumentsAsyncResult> -> unit
Public Sub GetFrameArguments (inspectionContext As DkmInspectionContext, workList As DkmWorkList, frame As DkmStackWalkFrame, completionRoutine As DkmCompletionRoutine(Of DkmGetFrameArgumentsAsyncResult))

Parameters

inspectionContext
DkmInspectionContext

[In] Options and target context to use while performing the inspection operation.

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.

frame
DkmStackWalkFrame

[In] Walked frames which the evaluator is requested to describe.

completionRoutine
DkmCompletionRoutine<DkmGetFrameArgumentsAsyncResult>

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.

Applies to