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

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

[Visual Basic]
Overrides Protected Function FromDOMBatch( _
   ByVal options As CompilerParameters, _
   ByVal ea() As CodeNamespace _
) As CompilerResults
[C#]
protected override CompilerResults FromDOMBatch(
   CompilerParameters options,
   CodeNamespace[] ea
);
[C++]
protected: override CompilerResults* FromDOMBatch(
   CompilerParameters* options,
   CodeNamespace* ea[]
);
[JScript]
protected override function FromDOMBatch(
   options : CompilerParameters,
   ea : CodeNamespace[]
) : CompilerResults;

Parameters

options
A CompilerParameters that indicates the options to use to compile.
ea
[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 | CodeNamespace