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.CompileAssemblyFromSourceBatch

Compiles an assembly based on the specified options and information from the specified sources.

[Visual Basic]
Function CompileAssemblyFromSourceBatch( _
   ByVal options As CompilerParameters, _
   ByVal sources() As String _
) As CompilerResults
[C#]
CompilerResults CompileAssemblyFromSourceBatch(
   CompilerParameters options,
   string[] sources
);
[C++]
CompilerResults* CompileAssemblyFromSourceBatch(
   CompilerParameters* options,
   String* sources[]
) = 0;
[JScript]
function CompileAssemblyFromSourceBatch(
   options : CompilerParameters,
   sources : String[]
) : CompilerResults;

Parameters

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

See Also

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