DkmStackWalkFrame.OnSetNextStatementCompleted(DkmInstructionAddress) 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.
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.
Location constraint: This API should generally be called only from client-side components. However, it is safe for a monitor-side component to call this API if the set next statement is being called from an event handler.
public:
void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ NewStatement);
public:
void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::DkmInstructionAddress ^ NewStatement);
void OnSetNextStatementCompleted(Microsoft::VisualStudio::Debugger::DkmInstructionAddress const & NewStatement);
public void OnSetNextStatementCompleted (Microsoft.VisualStudio.Debugger.DkmInstructionAddress NewStatement);
member this.OnSetNextStatementCompleted : Microsoft.VisualStudio.Debugger.DkmInstructionAddress -> unit
Public Sub OnSetNextStatementCompleted (NewStatement As DkmInstructionAddress)
Parameters
- 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.