Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetIsolatedComponentLoadContext()

static IsolatedComponentLoadContext Internal.Runtime.InteropServices.ComponentActivator.GetIsolatedComponentLoadContext ( string assemblyPath)
inlinestaticprivate

Definition at line 104 of file ComponentActivator.cs.

105 {
106 IsolatedComponentLoadContext value;
108 {
109 if (!s_assemblyLoadContexts.TryGetValue(assemblyPath, out value))
110 {
111 value = new IsolatedComponentLoadContext(assemblyPath);
113 }
114 }
115 return value;
116 }
static readonly Dictionary< string, IsolatedComponentLoadContext > s_assemblyLoadContexts

References Internal.Runtime.InteropServices.ComponentActivator.s_assemblyLoadContexts, and System.value.

Referenced by Internal.Runtime.InteropServices.ComponentActivator.LoadAssemblyAndGetFunctionPointer().