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!

CSharpCodeGenerator.FromFileBatch

Gets the compiler results after compiling the specified batch of files using the specified compiler parameters.

[Visual Basic]
Overrides Protected Function FromFileBatch( _
   ByVal options As CompilerParameters, _
   ByVal fileNames() As String _
) As CompilerResults
[C#]
protected override CompilerResults FromFileBatch(
   CompilerParameters options,
   string[] fileNames
);
[C++]
protected: override CompilerResults* FromFileBatch(
   CompilerParameters* options,
   String* fileNames[]
);
[JScript]
protected override function FromFileBatch(
   options : CompilerParameters,
   fileNames : String[]
) : CompilerResults;

Parameters

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

Return Value

A CompilerResults that indicates the results of compilation.

See Also

CSharpCodeGenerator Class | CSharpCodeGenerator Members | System.CodeDOM.Compiler Namespace