NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeCompiler.CompileAssemblyFromDOM

Creates an assembly based on options, with the information from e.

[Visual Basic]
Function CompileAssemblyFromDOM( _
   ByVal options As CompilerParameters, _
   ByVal e As CodeNamespace _
) As CompilerResults
[C#]
CompilerResults CompileAssemblyFromDOM(
   CompilerParameters options,
   CodeNamespace e
);
[C++]
CompilerResults* CompileAssemblyFromDOM(
   CompilerParameters* options,
   CodeNamespace* e
) = 0;
[JScript]
function CompileAssemblyFromDOM(
   options : CompilerParameters,
   e : CodeNamespace
) : CompilerResults;

Parameters

options
A CompilerParameters that indicates the options to compile with.
e
[To be supplied.]

Return Value

A CompilerResults that indicates the results of the compilation.

See Also

ICodeCompiler Interface | ICodeCompiler Members | System.CodeDOM.Compiler Namespace | System.CodeDOM.CompilerParameters | CodeNamespace