1 instantiation of DkmClrRuntimeInstance
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\Engine\DkmClrRuntimeInstance.cs (1)
31internal static readonly DkmClrRuntimeInstance DefaultRuntime = new DkmClrRuntimeInstance(new Assembly[0]);
12 references to DkmClrRuntimeInstance
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (12)
Debugger\Engine\DkmClrAppDomain.cs (2)
33internal DkmClrAppDomain(DkmClrRuntimeInstance runtime) 39public DkmClrRuntimeInstance RuntimeInstance { get; }
Debugger\Engine\DkmClrModuleInstance.cs (2)
31public DkmClrModuleInstance(DkmClrRuntimeInstance runtimeInstance, Assembly assembly, DkmModule module) : 43public DkmClrRuntimeInstance RuntimeInstance { get; }
Debugger\Engine\DkmClrRuntimeInstance.cs (2)
27internal delegate DkmClrModuleInstance GetModuleDelegate(DkmClrRuntimeInstance runtime, Assembly assembly); 31internal static readonly DkmClrRuntimeInstance DefaultRuntime = new DkmClrRuntimeInstance(new Assembly[0]);
Debugger\Engine\DkmClrType.cs (3)
54this(DkmClrRuntimeInstance.DefaultRuntime, lmrType) 58internal DkmClrType(DkmClrRuntimeInstance runtime, Type lmrType) : 149public DkmClrRuntimeInstance RuntimeInstance
Debugger\Engine\DkmClrValue.cs (1)
394var runtime = this.Type.RuntimeInstance;
Debugger\Engine\DkmInspectionContext.cs (1)
47this.RuntimeInstance = runtimeInstance ?? DkmClrRuntimeInstance.DefaultRuntime;
ReflectionUtilities.cs (1)
32internal static AssemblyLoadContext Load(this DkmClrRuntimeInstance runtime)