IDkmClrRuntimeDebugMonitorDirect.GetCorAppDomain(DkmClrAppDomain) Method

Definition

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.

public:
 Microsoft::VisualStudio::CorDebugInterop::ICorDebugAppDomain ^ GetCorAppDomain(Microsoft::VisualStudio::Debugger::Clr::DkmClrAppDomain ^ appDomain);
public Microsoft.VisualStudio.CorDebugInterop.ICorDebugAppDomain GetCorAppDomain (Microsoft.VisualStudio.Debugger.Clr.DkmClrAppDomain appDomain);
abstract member GetCorAppDomain : Microsoft.VisualStudio.Debugger.Clr.DkmClrAppDomain -> Microsoft.VisualStudio.CorDebugInterop.ICorDebugAppDomain
Public Function GetCorAppDomain (appDomain As DkmClrAppDomain) As ICorDebugAppDomain

Parameters

appDomain
DkmClrAppDomain

[In] DkmClrAppDomain represents a CLR app domain inside a process which is being debugged.

Returns

[Out] ICorDebug interface representing an app domain inspection.

Applies to