3 references to Load
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
RuntimeViewCompiler.cs (1)
365var assembly = Assembly.Load(assemblyStream.ToArray(), pdbStream?.ToArray());
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\AppDomain.cs (1)
187public Assembly Load(byte[] rawAssembly, byte[]? rawSymbolStore) => Assembly.Load(rawAssembly, rawSymbolStore);
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
251public static Assembly Load(byte[] rawAssembly) => Load(rawAssembly, rawSymbolStore: null);