IDkmAfterSetNextStatementNotification.OnSetNextStatementCompleted Method

Definition

OnSetNextStatementCompleted is a general purpose method to allow components to clear state after a set next statement completed. The DkmStackWalkFrame will be the frame prior to to the SetNextStatement call.

public:
 void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame ^ frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ newStatement);
public:
 void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame ^ frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ newStatement);
void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::CallStack::DkmStackWalkFrame const & frame, Microsoft::VisualStudio::Debugger::DkmInstructionAddress const & newStatement);
public void OnSetNextStatementCompleted (Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame frame, Microsoft.VisualStudio.Debugger.DkmInstructionAddress newStatement);
abstract member OnSetNextStatementCompleted : Microsoft.VisualStudio.Debugger.CallStack.DkmStackWalkFrame * Microsoft.VisualStudio.Debugger.DkmInstructionAddress -> unit
Public Sub OnSetNextStatementCompleted (frame As DkmStackWalkFrame, newStatement As DkmInstructionAddress)

Parameters

frame
DkmStackWalkFrame

[In] DkmStackWalkFrame represents a frame on a call stack which has been walked, but may not have been formatted or filtered. Formatted frames are represented by DkmStackFrame instead.

newStatement
DkmInstructionAddress

[In] Abstract representation of an executable code location (ex: EIP value). If resolved, an Instruction Address will be within a particular module instance. An Instruction Address is always within a particular Runtime Instance.

Applies to