IDkmStackWalkFrameInterfaceProvider2 Interface

Definition

This interface is implemented by the managed debug monitor and provides access to the ICorDebugFrame.

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, TransportKind.

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

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

Methods

GetCorFrame(DkmClrRuntimeInstance, DkmThread, UInt64, Guid)

GetCorFrame is used to obtain a ICorDebugFrame 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.

Applies to