| File: EditAndContinue\IEditAndContinueSessionTracker.cs | Web Access |
| Project: src\roslyn\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features) |
// 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 Microsoft.CodeAnalysis.Diagnostics; namespace Microsoft.CodeAnalysis.EditAndContinue; /// <summary> /// Exposes EnC and Hot Reload session state to in-proc components. /// </summary> internal interface IEditAndContinueSessionTracker { /// <summary> /// True while Hot Reload or EnC session is active. /// </summary> bool IsSessionActive { get; } /// <summary> /// Diagnostics reported by the last <see cref="IEditAndContinueService.EmitSolutionUpdateAsync"/> call. /// Includes emit errors, project level errors, project level rude edits and issues reported by the debugger when applying changes. /// Does not include rude edits reported for added or changed documents, which are reported by <see cref="IEditAndContinueService.GetDocumentDiagnosticsAsync"/>, /// Includes rude edits reported for deleted documents. /// </summary> ImmutableArray<DiagnosticData> ApplyChangesDiagnostics { get; } }