| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.IO;
- using System.Reflection;
- namespace Atomic.Bootstrap
- {
- /// <summary>
- /// A context in which assemblies can be loaded.
- /// </summary>
- public interface IAssemblyLoadContext : IDisposable
- {
- /// <summary>
- /// Load an assembly by name.
- /// </summary>
- /// <param name="assemblyName">The name of the assembly.</param>
- /// <returns>The loaded assembly.</returns>
- Assembly Load(AssemblyName assemblyName);
- /// <summary>
- /// Loads the assembly located at the provided file system path.
- /// </summary>
- /// <param name="path">The fully qualified path of the file to load.</param>
- /// <returns>The loaded assembly.</returns>
- Assembly LoadFile(string path);
- /// <summary>
- /// Loads the assembly with a common object file format (COFF)-based image containing an emitted assembly, optionally including symbols for the assembly.
- /// </summary>
- /// <param name="assemblyStream">The stream representing the assembly.</param>
- /// <param name="assemblySymbols">The stream representing the symbols.</param>
- /// <returns>The loaded assembly.</returns>
- Assembly LoadStream(Stream assemblyStream, Stream assemblySymbols);
- }
- }
|