IDkmClrRuntimeDebugMonitorDirect.GetCorFunction Method

Definition

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.

public:
 Microsoft::VisualStudio::CorDebugInterop::ICorDebugFunction ^ GetCorFunction(Microsoft::VisualStudio::Debugger::Clr::DkmClrInstructionAddress ^ clrAddress);
public:
 Microsoft::VisualStudio::CorDebugInterop::ICorDebugFunction ^ GetCorFunction(Microsoft::VisualStudio::Debugger::Clr::DkmClrInstructionAddress ^ clrAddress);
Microsoft::VisualStudio::CorDebugInterop::ICorDebugFunction GetCorFunction(Microsoft::VisualStudio::Debugger::Clr::DkmClrInstructionAddress const & clrAddress);
public Microsoft.VisualStudio.CorDebugInterop.ICorDebugFunction GetCorFunction (Microsoft.VisualStudio.Debugger.Clr.DkmClrInstructionAddress clrAddress);
abstract member GetCorFunction : Microsoft.VisualStudio.Debugger.Clr.DkmClrInstructionAddress -> Microsoft.VisualStudio.CorDebugInterop.ICorDebugFunction
Public Function GetCorFunction (clrAddress As DkmClrInstructionAddress) As ICorDebugFunction

Parameters

clrAddress
DkmClrInstructionAddress

[In] DkmClrInstructionAddress is used for addresses in managed code.

Returns

[Out] ICorDebug interface representing an app domain inspection.

Applies to