3 writes to Image
Microsoft.CodeAnalysis.Test.Utilities (3)
Metadata\ModuleData.cs (3)
69this.Image = image; 79this.Image = image; 89this.Image = image;
10 references to Image
Microsoft.CodeAnalysis.Test.Utilities (10)
Compilation\IRuntimeEnvironment.cs (1)
340module.Image.WriteToFile(pePath);
CompilationVerifier.cs (2)
81images.AddRange(_allModuleData.Where(m => m.Kind == OutputKind.NetModule).Select(m => m.Image)); 353readersByName.Add(name, new PEReader(module.Image));
Platform\Desktop\AppDomainAssemblyCache.cs (1)
81var loadedAssembly = DesktopRuntimeUtil.LoadAsAssembly(moduleData.SimpleName, moduleData.Image, reflectionOnly);
Platform\Desktop\DesktopRuntimeEnvironment.cs (1)
295return GetEmitData().MainModule.Image;
Platform\Desktop\RuntimeAssemblyManager.cs (2)
265return data.ModuleData.Image; 434string[] output = CLRHelpers.PeVerify(module.Image);
Platform\Desktop\RuntimeModuleData.cs (3)
67var image = info.GetByteArray(nameof(ModuleData.Image)); 78info.AddByteArray(nameof(ModuleData.Image), Data.Image);