IDkmClrRuntimeDebugMonitorDirect Interface

Definition

Interface implemented by the managed DM to provide expression evaluators and other components direct access to ICorDebug interfaces.

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.

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

Methods

GetCorAppDomain(DkmClrAppDomain)

Provides direct access to the ICorDebugAppDomain object, which expression evaluators or other components can use to inspect the app domain.

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.

GetCorFunction(DkmClrInstructionAddress)

Provides direct access to the ICorDebugFunction object, which expression evaluators or other components can use to inspect the app domain.

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.

GetCorModule(DkmClrModuleInstance)

Provides direct access to the ICorDebugModule object, which expression evaluators or other components can use to inspect the app domain.

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.

GetCorProcess(DkmClrRuntimeInstance)

Provides direct access to the ICorDebugProcess object, which expression evaluators or other components can use for inspection.

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.

GetCorThread(DkmClrRuntimeInstance, DkmThread)

Provides direct access to the ICorDebugThread object, which expression evaluators or other components can use to inspect the app domain.

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