| File: Compilation\EmitResult.cs | Web Access |
| Project: src\roslyn\src\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj (Microsoft.CodeAnalysis) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using System.Diagnostics; namespace Microsoft.CodeAnalysis.Emit { /// <summary> /// The result of the Compilation.Emit method. /// </summary> [DebuggerDisplay("{GetDebuggerDisplay(), nq}")] public class EmitResult { /// <summary> /// True if the compilation successfully produced an executable. /// If false then the diagnostics should include at least one error diagnostic /// indicating the cause of the failure. /// </summary> public bool Success { get; } /// <summary> /// A list of all the diagnostics associated with compilations. This include parse errors, declaration errors, /// compilation errors, and emitting errors. /// </summary> public ImmutableArray<Diagnostic> Diagnostics { get; } internal EmitResult(bool success, ImmutableArray<Diagnostic> diagnostics) { Success = success; Diagnostics = diagnostics; } protected virtual string GetDebuggerDisplay() { string result = "Success = " + (Success ? "true" : "false"); if (Diagnostics != null) { result += ", Diagnostics.Count = " + Diagnostics.Length; } else { result += ", Diagnostics = null"; } return result; } } }