CodeDomProvider.CompileAssemblyFromDom Method
Compiles an assembly based on the System.CodeDom trees contained in the specified array of CodeCompileUnit objects, using the specified compiler settings.
Assembly: System (in System.dll)
public virtual CompilerResults CompileAssemblyFromDom( CompilerParameters options, params CodeCompileUnit[] compilationUnits )
Parameters
- options
- Type: System.CodeDom.Compiler.CompilerParameters
A CompilerParameters object that indicates the settings for the compilation.
- compilationUnits
- Type: System.CodeDom.CodeCompileUnit[]
An array of type CodeCompileUnit that indicates the code to compile.
Return Value
Type: System.CodeDom.Compiler.CompilerResultsA CompilerResults object that indicates the results of the compilation.
| Exception | Condition |
|---|---|
| NotImplementedException |
Neither this method nor the CreateCompiler method is overridden in a derived class. |
Note
|
|---|
|
In the .NET Framework versions 1.0 and 1.1, this method is provided by the ICodeCompiler implementation that is returned by the CreateCompiler method of the provider. In version 2.0, this method can be called directly on the code provider even if it is not overridden by the code provider. If the code provider does not override this method, the ICodeCompiler implementation is called by the base class. |
Notes to Inheritors
If you override this method, you must not call the corresponding method of the base class. The base-class method creates a generator in the derived class using the obsolete CreateCompiler method for compatibility with preexisting providers that use code compilers. The base-class method then calls the equivalent method in the ICodeCompiler implementation to perform this function. You will get a NotImplementedException if you call the base-class method from a code provider that does not use a code compiler.
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.
Note