BuildManager.AddReferencedAssembly(Assembly) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds an assembly to the application's set of referenced assemblies.
public:
static void AddReferencedAssembly(System::Reflection::Assembly ^ assembly);
public static void AddReferencedAssembly (System.Reflection.Assembly assembly);
static member AddReferencedAssembly : System.Reflection.Assembly -> unit
Public Shared Sub AddReferencedAssembly (assembly As Assembly)
Parameters
- assembly
- Assembly
The assembly to add.
Exceptions
The assembly
parameter is null
or empty.
The method was not called before the Application_Start
event in the Global.asax file occurred.
Remarks
Calling this method is equivalent to adding the assembly to the application-level Web.config file. The method must be called during the Application_PreStartInit
stage of the application.
The GetReferencedAssemblies method will return the set of assemblies that are determined from configuration files and any assemblies that were added by using this method.
If an attempt is made to add an assembly that has already been added, the duplicate entry is ignored.
This method must be called before the Application_Start
event in the Global.asax file occurs.