C# Class LinFu.AOP.Cecil.Loaders.JITWeaver

Represents a loader that modifies a given assembly prior to being loaded from disk.
Inheritance: AssemblyLoader
Show file Open project: philiplaureano/LinFu

Public Methods

Method Description
JITWeaver ( ) : System

Initializes a new instance of the JITWeaver class.

JITWeaver ( IPdbLoader pdbLoader ) : System

Initializes a new instance of the JITWeaver class.

Load ( string assemblyFile ) : Assembly

Modifies a given assembly prior to being loaded from disk.

Method Details

JITWeaver() public method

Initializes a new instance of the JITWeaver class.
public JITWeaver ( ) : System
return System

JITWeaver() public method

Initializes a new instance of the JITWeaver class.
public JITWeaver ( IPdbLoader pdbLoader ) : System
pdbLoader IPdbLoader The loader that will be responsible for loading the program debugging information into memory.
return System

Load() public method

Modifies a given assembly prior to being loaded from disk.
public Load ( string assemblyFile ) : Assembly
assemblyFile string The filename of the target assembly.
return System.Reflection.Assembly