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

Compiles an assembly based on the specified options and contents of the specified filenames.

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

Parameters

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

See Also

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