IDkmStackWalkFrameInterfaceProvider Interface

Definition

This interface is implemented by components that contribute stack frames, and wish to provide an additional inspection interface for expression evaluators and other components that need to inspect the stack frame.

NOTE: The data container API should not be used from the implementation of the returned custom interface.

Implementations of this interface may restrict when they are called using a filter defined in their component configuration. The following properties may be used: BaseDebugMonitorId, EngineId, RuntimeId, SymbolProviderId, TransportKind.

public interface class IDkmStackWalkFrameInterfaceProvider
public interface class IDkmStackWalkFrameInterfaceProvider
__interface IDkmStackWalkFrameInterfaceProvider
public interface IDkmStackWalkFrameInterfaceProvider
type IDkmStackWalkFrameInterfaceProvider = interface
Public Interface IDkmStackWalkFrameInterfaceProvider

Methods

GetFrameInspectionInterface(DkmStackWalkFrame, DkmInspectionSession, Guid)

GetFrameInspectionInterface is used to obtain a ICorDebugFrame or other implementation-specific interfaces which a component can use to deeply inspect the stack frame.

The returned interface may ONLY be used to inspect the target process, and should NEVER be used to control execution (no stepping, no breakpoints, no continue, etc). Doing so is unsupported and will result in undefined behavior. NOTE: Using this method from managed code is not recommended for performance reasons. Marshalling of DkmStackWalkFrame between native and managed code is expensive. Use DkmRuntimeInstance.GetFrameInspectionInterface instead.

Applies to