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!

IBatchCompiler.CompileAssemblyFromDOMBatch

Compiles an assembly based on the specified options and information.

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

Parameters

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

See Also

IBatchCompiler Interface | IBatchCompiler Members | System.CodeDOM.Compiler Namespace