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!

VBCodeGenerator.FromFileBatch

Gets the results of compilation after compiling with the specified options and files.

[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 use to compile.
fileNames
[To be supplied.]

Return Value

A CompilerResults that indicates the results of compilation.

See Also

VBCodeGenerator Class | VBCodeGenerator Members | System.CodeDOM.Compiler Namespace | CompilerParameters | CompilerResults