IDkmLanguageAsyncStepper.SetStepOutFlag Method

Definition

This method asks the language to set or clear a flag on the Task backing the async method. This flag enables stopping during step out of an async method.

public:
 void SetStepOutFlag(Microsoft::VisualStudio::Debugger::Evaluation::DkmLanguageInstructionAddress ^ languageInstructionAddress, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, bool value);
public void SetStepOutFlag (Microsoft.VisualStudio.Debugger.Evaluation.DkmLanguageInstructionAddress languageInstructionAddress, Microsoft.VisualStudio.Debugger.DkmThread thread, bool value);
abstract member SetStepOutFlag : Microsoft.VisualStudio.Debugger.Evaluation.DkmLanguageInstructionAddress * Microsoft.VisualStudio.Debugger.DkmThread * bool -> unit
Public Sub SetStepOutFlag (languageInstructionAddress As DkmLanguageInstructionAddress, thread As DkmThread, value As Boolean)

Parameters

languageInstructionAddress
DkmLanguageInstructionAddress

[In] Pairing between an instruction address and the language that should be used to decode it.

thread
DkmThread

[In] Stack frame that provides the context of in which to evaluate the expression.

value
Boolean

[In] If true set the flag, else clear the flag.

Applies to