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!

ICodeCompiler.CompileAssemblyFromSource

Creates an assembly based on options, with the information from source.

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

Parameters

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

Return Value

A CompilerResults that indicates the results of the compilation.

See Also

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