IAssemblyPostProcessor::PostProcessAssembly Method
Called before the assembly is loaded to allow the implementing class to modify the assembly.
Assembly: System.Web (in System.Web.dll)
Parameters
- path
- Type: System::String
The path to the assembly.
The AssemblyBuilder class calls this method after the assembly has been compiled. Any actions to be taken before loading the assembly should be included in this method.
The following code example demonstrates how to create an implementation of the IAssemblyPostProcessor interface, and register it in the Web.config file of a Web application.
The first part of the code example creates a class named Samples.Process.postProcessTest that implements the IAssemblyPostProcessor interface. This class performs the simple action of writing a file when the PostProcessAssembly method is called.
Compile the class into a .dll file with the command csc /target:library postProcessTest.cs. Add the resulting .dll file to the Bin folder of an ASP.NET application and register the .dll in the Web.config file, as shown in the following code.
<compilation debug="true" assemblyPostProcessorType="Samples.Process.postProcessTest" />
When a user visits the Web site, the Web application is dynamically compiled and the file MyTest.txt will be written to C:\compile.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.