API ReferenceSandbox
CompilerOutputclass
object→CompilerOutput
Constructors1
Showing 1 constructors
public CompilerOutput(Sandbox.Compiler compiler)
| Parameter | Type | Description |
|---|---|---|
| compiler | Compiler | — |
No results match this filter.
Properties8
Showing 8 properties
public Sandbox.CodeArchive Sandbox.CompilerOutput.Archive { get; set; }
A code archive created during the compile
public byte[] Sandbox.CompilerOutput.AssemblyData { get; set; }
The [assembly].dll contents for this build
Returns:
byte[]—public Sandbox.Compiler Sandbox.CompilerOutput.Compiler { get; set; }
The compiler that has produced this build
public System.Collections.Generic.List`1<Microsoft.CodeAnalysis.Diagnostic> Sandbox.CompilerOutput.Diagnostics { get; set; }
A list of diagnostics caused by the previous build
Returns:
List<Diagnostic>—public System.Exception Sandbox.CompilerOutput.Exception { get; set; }
If an exception happened during the build, it'll be available here
Returns:
Exception—public bool Sandbox.CompilerOutput.Successful { get; set; }
True if the build succeeded
Returns:
bool—public System.Version Sandbox.CompilerOutput.Version { get; set; }
The version of the assembly
Returns:
Version—public string Sandbox.CompilerOutput.XmlDocumentation { get; set; }
The [assembly].xml contents for this build
Returns:
string—No results match this filter.