IDkmEditAndContinueService.IsStaleCode Method

Definition

Check if the address is in stale code or not.

public:
 bool IsStaleCode(Microsoft::VisualStudio::Debugger::Symbols::DkmInstructionSymbol ^ instruction, Microsoft::VisualStudio::Debugger::DkmModuleInstance ^ module, bool isLeafFrame);
public bool IsStaleCode (Microsoft.VisualStudio.Debugger.Symbols.DkmInstructionSymbol instruction, Microsoft.VisualStudio.Debugger.DkmModuleInstance module, bool isLeafFrame);
abstract member IsStaleCode : Microsoft.VisualStudio.Debugger.Symbols.DkmInstructionSymbol * Microsoft.VisualStudio.Debugger.DkmModuleInstance * bool -> bool
Public Function IsStaleCode (instruction As DkmInstructionSymbol, module As DkmModuleInstance, isLeafFrame As Boolean) As Boolean

Parameters

instruction
DkmInstructionSymbol

[In] DkmInstructionSymbol represents a method in the target process.

module
DkmModuleInstance

[In] The owning module instance of the checking address.

isLeafFrame
Boolean

[In] Specify if this address belongs to leaf frame or not.

Returns

[Out] True if address is in stale code, False otherwise.

Applies to